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 ce67b3e commit 559e1efCopy full SHA for 559e1ef
.github/workflows/examples.yml
@@ -53,11 +53,11 @@ jobs:
53
54
- name: Configure CMake
55
run: >
56
- cmake examples -B ${{ steps.strings.outputs.build-output-dir }}
+ cmake -B ${{ steps.strings.outputs.build-output-dir }}
57
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
58
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
59
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
60
- -S ${{ github.workspace }}
+ -S ${{ github.workspace }}/examples
61
62
- name: Build examples
63
- run: cmake examples --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
+ run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
0 commit comments