Skip to content

Commit

Permalink
Allow failure of binary on host for debian
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed May 9, 2024
1 parent af41970 commit 8b3c8bd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/coq-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
include:
- debian: sid
#- debian: bookworm # restore once 8.17 lands in Debian stable
runs-on: 'ubuntu-22.04'
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
Expand All @@ -131,7 +131,10 @@ jobs:
echo "::group::ldd fiat_crypto"
ldd dist/fiat_crypto
echo "::endgroup::"
etc/ci/test-run-fiat-crypto.sh dist/fiat_crypto
etc/ci/test-run-fiat-crypto.sh dist/fiat_crypto || {
printf '::warning::Debian ${{ matrix.debian }} binary does not run on ubuntu: %s\n' \
"$(etc/ci/test-run-fiat-crypto.sh dist/fiat_crypto 2>&1 | tr '\n' '~' | sed 's/~/%0A/g')";
}
- name: setup Debian chroot
run: etc/ci/setup-debian-chroot.sh "${{ matrix.debian }}"
- name: Test files (container)
Expand Down

0 comments on commit 8b3c8bd

Please sign in to comment.