CI: Fixed build directory.
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:06:28 +08:00
parent 9d522d56d4
commit d92c01b533
Signed by: imi415
GPG Key ID: DB982239424FF8AC
1 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m0p.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m0p.cmake ..
- make - make
--- ---
@ -21,7 +21,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m3.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m3.cmake ..
- make - make
--- ---
@ -34,7 +34,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4.cmake ..
- make - make
--- ---
@ -47,7 +47,7 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4f.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m4f.cmake ..
- make - make
--- ---
@ -60,20 +60,20 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m7f.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m7f.cmake ..
- make - make
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: Build - Cortex-M33 without DSP extension name: Build - Cortex-M33
steps: steps:
- name: Build - name: Build
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33.cmake ..
- make - make
--- ---
@ -86,6 +86,6 @@ steps:
image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest" image: "git.minori.work/embedded_sdk/embedded-builder-arm:latest"
commands: commands:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33f.cmake - cmake -DCMAKE_TOOLCHAIN_FILE=cmake/arm-cortex-m33f.cmake ..
- make - make