We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e697276 commit 15f3241Copy full SHA for 15f3241
1 file changed
.github/workflows/build.yml
@@ -20,10 +20,11 @@ jobs:
20
- name: Prepare
21
run: bash scripts/install_dependency.sh
22
- name: Build
23
- run: bash scripts/install_libcachesim.sh
24
- - name: Run
25
- continue-on-error: true
26
- run: make test
+ run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
+ - name: Test
+ working-directory: ${{github.workspace}}/build
+ run: |
27
+ ctest -C ${{env.BUILD_TYPE}} --output-on-failure
28
29
ubuntu:
30
runs-on: ubuntu-latest
0 commit comments