Skip to content

Commit a2bc385

Browse files
committed
Fixes CI failures caused by default output directory change
1 parent 6649692 commit a2bc385

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/c-cpp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: build
1616
run: cmake --build build
1717
- name: test
18-
run: ./bin/unit_tests --wait-for-keypress never -d yes
18+
run: ./build/test/unit_tests --wait-for-keypress never -d yes
1919

2020
macos:
2121
runs-on: macOS-latest
@@ -26,7 +26,7 @@ jobs:
2626
- name: build
2727
run: cmake --build build
2828
- name: test
29-
run: ./bin/unit_tests --wait-for-keypress never -d yes exclude:large_files
29+
run: ./build/test/unit_tests --wait-for-keypress never -d yes exclude:large_files
3030

3131
windows:
3232
runs-on: windows-latest
@@ -37,4 +37,4 @@ jobs:
3737
- name: build
3838
run: cmake --build build --config Debug
3939
- name: test
40-
run: ./bin/Debug/unit_tests --wait-for-keypress never -d yes exclude:large_files
40+
run: ./build/test/Debug/unit_tests --wait-for-keypress never -d yes exclude:large_files

0 commit comments

Comments
 (0)