Skip to content

Commit

Permalink
check if this works
Browse files Browse the repository at this point in the history
Signed-off-by: Lilith Oberhauser <[email protected]>
  • Loading branch information
lilith218 committed Apr 5, 2024
1 parent 50266d8 commit f6f733c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ on: [push, pull_request]
jobs:
Run-Checks:
runs-on: ubuntu-latest
needs: [build-and-push-image]
# TODO: use the built docker from the current branch/commit
container: ghcr.io/open-s4c/vsyncer-ci:lilith-cmake
container: ghcr.io/open-s4c/vsyncer-ci:${{ github.sha }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Which commit
run: echo "you are running on this docker ${{ github.sha }}"
- name: Run ctest
run: cd vsyncer/tests
- run: cmake ..
- run: ctest -V
run: pwd
- run: cmake -S./test -Bbuild
- run: cmake --build build
- run: ctest --test-dir build --output-on-failure

0 comments on commit f6f733c

Please sign in to comment.