We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf0a97 commit c633417Copy full SHA for c633417
.github/workflows/c-windows.yml
@@ -66,12 +66,13 @@ jobs:
66
-DCMAKE_BUILD_TYPE=Debug
67
-DCMAKE_C_COMPILER=cl
68
-DCMAKE_CXX_COMPILER=cl
69
- -S${{ github.workspace }} -B${{ github.workspace }}/build/default -G "Unix Makefiles"
+ -S${{ github.workspace }}
70
+ -B${{ github.workspace }}/build/default -G "MinGW Makefiles"
71
72
- name: Build
73
run: |
74
cmake --build build/default
75
76
- name: Test
- run: |
77
- ctest --test-dir C:/Users/gonza/devel/gon/algorithm-exercises-c/build/default
+ run: >
78
+ ctest --test-dir ${{ github.workspace }}/build/default
0 commit comments