Skip to content

Commit

Permalink
ci: set continue-on-error for cross-compile
Browse files Browse the repository at this point in the history
Running cross compile tests with Debian unstable sometimes
fails due to missing or outdated packages.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
  • Loading branch information
rst0git authored and avagin committed Apr 29, 2022
1 parent 0568889 commit 4d31105
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@ jobs:
build:

runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
experimental: [false]
target: [
armv7-stable-cross,
armv7-unstable-cross,
aarch64-stable-cross,
aarch64-unstable-cross,
ppc64-stable-cross,
ppc64-unstable-cross,
mips64el-stable-cross,
mips64el-unstable-cross
]
include:
- experimental: true
target: armv7-unstable-cross
- experimental: true
target: aarch64-unstable-cross
- experimental: true
target: ppc64-unstable-cross
- experimental: true
target: mips64el-unstable-cross

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 4d31105

Please sign in to comment.