Skip to content

Commit 15f3241

Browse files
committed
fix workflow
1 parent e697276 commit 15f3241

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ jobs:
2020
- name: Prepare
2121
run: bash scripts/install_dependency.sh
2222
- name: Build
23-
run: bash scripts/install_libcachesim.sh
24-
- name: Run
25-
continue-on-error: true
26-
run: make test
23+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
24+
- name: Test
25+
working-directory: ${{github.workspace}}/build
26+
run: |
27+
ctest -C ${{env.BUILD_TYPE}} --output-on-failure
2728
2829
ubuntu:
2930
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)