diff options
| author | Karel Zak <kzak@redhat.com> | 2023-05-09 11:21:37 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2023-05-09 11:21:37 +0200 |
| commit | 172ce079af5ba6bfff88beecf6ec636ffd345923 (patch) | |
| tree | 242e2eab34805b164727bd499b1b60907b971966 /.github/workflows | |
| parent | f8717ded9ffa4809f0475d38edffa1cad2911d22 (diff) | |
| parent | 39e2d567d46fdeb7726512568ab1b00921e49241 (diff) | |
| download | util-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.yml | 11 |
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: | |
