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 1caa376 commit dd7a77cCopy full SHA for dd7a77c
.github/workflows/test.yaml
@@ -25,13 +25,13 @@ jobs:
25
26
- name: Configure
27
shell: bash
28
- run: cmake -B . -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE}}
+ run: cmake -B build_dir -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE}}
29
30
- name: Build
31
32
- run: cmake --build . --config ${{ env.BUILD_TYPE }}
+ run: cmake --build build_dir --config ${{ env.BUILD_TYPE }}
33
34
- name: Run Tests
35
- working-directory: ${{ env.APP_DIR }}
+ working-directory: build_dir
36
37
run: ctest
0 commit comments