We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba1a4f commit bf3c13fCopy full SHA for bf3c13f
1 file changed
.github/workflows/test.yml
@@ -88,12 +88,12 @@ jobs:
88
run: echo "CXX=${{matrix.compiler}}" >> $GITHUB_ENV
89
90
- name: Configure CMake
91
- run: cmake -Wdev -Werror=dev -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
+ run: cmake -Wdev -Werror=dev -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
92
${{matrix.extra_build_flags}}
93
94
- name: Build
95
working-directory: ${{github.workspace}}/build
96
- run: cmake --build . --config ${BUILD_TYPE} --parallel ${num_cpus}
+ run: cmake --build . --config ${{env.BUILD_TYPE}} --parallel ${{env.num_cpus}}
97
98
- name: Test
99
0 commit comments