CI: Enable floating points for certain hardware platforms.
continuous-integration/drone/push Build is passing Details

Signed-off-by: Yilin Sun <imi415@imi.moe>
This commit is contained in:
Yilin Sun 2023-07-05 14:10:37 +08:00
parent d92c01b533
commit 242625c01b
Signed by: imi415
GPG Key ID: DB982239424FF8AC
1 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands:
- mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4f.cmake ..
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4f.cmake -DIMSENSORS_FLOAT_SUPPORT=ON ..
- make
---
@ -60,7 +60,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands:
- mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m7f.cmake ..
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m7f.cmake -DIMSENSORS_FLOAT_SUPPORT=ON ..
- make
---
@ -86,6 +86,6 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands:
- mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33f.cmake ..
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33f.cmake -DIMSENSORS_FLOAT_SUPPORT=ON ..
- make