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 329f6de commit a38059fCopy full SHA for a38059f
.github/workflows/cmake-single-platform.yml
@@ -29,10 +29,10 @@ jobs:
29
30
- name: Build
31
# Build your program with the given configuration
32
- run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
+ run: cmake --build ${{github.workspace}}/src/main/cpp/ --config ${{env.BUILD_TYPE}}
33
34
- name: Test
35
- working-directory: ${{github.workspace}}/build
+ working-directory: ${{github.workspace}}/src/main/cpp/
36
# Execute tests defined by the CMake configuration.
37
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
38
run: ctest -C ${{env.BUILD_TYPE}}
0 commit comments