Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadostin Stoyanov <rstoyanov@fedoraproject.org>2022-01-28 01:13:33 +0300
committerAndrei Vagin <avagin@gmail.com>2022-04-29 03:53:52 +0300
commit4d31105c76ab043df3a0643c526f39d99ab37a35 (patch)
tree905a02468cf5887ccab7f720df018f604906ec9c /.github
parent0568889ee368c2bc2682aae5c69d67ac16eac675 (diff)
ci: set continue-on-error for cross-compile
Running cross compile tests with Debian unstable sometimes fails due to missing or outdated packages. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-compile.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/.github/workflows/cross-compile.yml b/.github/workflows/cross-compile.yml
index 461a6e618..be8e7f09c 100644
--- a/.github/workflows/cross-compile.yml
+++ b/.github/workflows/cross-compile.yml
@@ -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