Skip to content

Commit

Permalink
fixup! GitHub workflows: native.yml: run root tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilck committed Jul 11, 2024
1 parent 050af99 commit d038df1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ jobs:
uses: mosteo-actions/docker-run@v1
with:
image: ghcr.io/mwilck/multipath-build-${{ matrix.os }}
guest-dir: ${{ github.workspace }}
guest-dir: /__w/multipath-tools
host-dir: ${{ github.workspace }}
params: --workdir ${{ github.workspace }} --privileged -v /dev/ram0:/dev/ram0
params: --workdir /__w/multipath-tools --privileged -v /dev/ram0:/dev/ram0
command: -C tests DIO_TEST_DEV=/dev/ram0
id: root-test
continue-on-error: true
- name: show root test output
run: for o in tests/*.out; do echo "===== $o ====="; cat "$o"; done
- name: fail
run: /bin/false
if: ${{ steps.root.test.outcome == 'failure' }}
if: ${{ steps.root-test.outcome == 'failure' }}

0 comments on commit d038df1

Please sign in to comment.