summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2023-05-09 11:21:37 +0200
committerKarel Zak <kzak@redhat.com>2023-05-09 11:21:37 +0200
commit172ce079af5ba6bfff88beecf6ec636ffd345923 (patch)
tree242e2eab34805b164727bd499b1b60907b971966 /.github/workflows
parentf8717ded9ffa4809f0475d38edffa1cad2911d22 (diff)
parent39e2d567d46fdeb7726512568ab1b00921e49241 (diff)
downloadutil-linux-172ce079af5ba6bfff88beecf6ec636ffd345923.tar.gz
Merge branch 'ci/riscv' of https://github.com/t-8ch/util-linux
* 'ci/riscv' of https://github.com/t-8ch/util-linux: ci: also build on riscv64 lsns: (tests) skip test if rtnetlin is nonfunctional
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cibuild.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml
index 7bb03457b..4372e05cc 100644
--- a/.github/workflows/cibuild.yml
+++ b/.github/workflows/cibuild.yml
@@ -103,14 +103,21 @@ jobs:
run: .github/workflows/cibuild.sh CONFIGURE
- name: Make distcheck
run: .github/workflows/cibuild.sh DISTCHECK
- build-s390x:
+ build-arch:
+ name: build (qemu-user, ${{ matrix.arch }})
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - arch: s390x
+ - arch: riscv64
steps:
- name: Repository checkout
uses: actions/checkout@v1
- uses: uraimo/run-on-arch-action@v2
with:
- arch: s390x
+ arch: ${{ matrix.arch }}
dockerRunArgs: --privileged -v /dev:/dev
distro: ubuntu_latest
run: |