aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-19 15:21:06 +0800
committercrupest <crupest@outlook.com>2022-01-19 15:21:06 +0800
commit6f7d98a277f468fceb0585f9c4f4b3b6b64f5f3a (patch)
tree168de0a39c2440f1f006b2ecb1426bb98b5cd806 /.github/workflows/ci.yml
parente9504e1d1ced84ccf5afb6c967dc95f7c1e4f0db (diff)
downloadcru-6f7d98a277f468fceb0585f9c4f4b3b6b64f5f3a.tar.gz
cru-6f7d98a277f468fceb0585f9c4f4b3b6b64f5f3a.tar.bz2
cru-6f7d98a277f468fceb0585f9c4f4b3b6b64f5f3a.zip
...
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e99fc8b6..7a9c7ac7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -33,8 +33,8 @@ jobs:
- name: Build
run: |
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -H. -B./build -G Ninja
- cmake --build ./build --config Debug --target all
+ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -H. -Bbuild -G Ninja
+ cmake --build build --config Debug --target all
- name: Test
working-directory: build
@@ -61,8 +61,8 @@ jobs:
- name: Build
run: |
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -H. -B./build -G Ninja
- cmake --build ./build --config Debug --target all
+ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -H. -Bbuild -G Ninja
+ cmake --build build --config Debug --target all
- name: Test
working-directory: build