Skip to content

Commit 07330f2

Browse files
committed
Fix cmake parameter order
1 parent 0ee08b6 commit 07330f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ docker-build:
88
- mkdir build
99
- cd build
1010
- cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_TOOLCHAIN_FILE=../toolchain/Linux-mingw64.cmake ..
11-
- cmake --build --target bofs_x64 .
12-
- cmake --build --target bofs_x86 .
11+
- cmake --build . --target bofs_x64
12+
- cmake --build . --target bofs_x86
1313
- cd bofs
1414
- make install
1515
- cd ..
16-
- cmake --build --target bofnet_managed
16+
- cmake --build . --target bofnet_managed
1717
- cmake --install .
1818
artifacts:
1919
paths:

0 commit comments

Comments
 (0)