Skip to content

Commit

Permalink
Fix cmake parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
CCob committed Sep 1, 2021
1 parent 0ee08b6 commit 07330f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ docker-build:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_TOOLCHAIN_FILE=../toolchain/Linux-mingw64.cmake ..
- cmake --build --target bofs_x64 .
- cmake --build --target bofs_x86 .
- cmake --build . --target bofs_x64
- cmake --build . --target bofs_x86
- cd bofs
- make install
- cd ..
- cmake --build --target bofnet_managed
- cmake --build . --target bofnet_managed
- cmake --install .
artifacts:
paths:
Expand Down

0 comments on commit 07330f2

Please sign in to comment.