From 39e2d567d46fdeb7726512568ab1b00921e49241 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 6 May 2023 08:25:34 +0200 Subject: [PATCH] ci: also build on riscv64 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- .github/workflows/cibuild.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index d367efdff1..b0b04d5d2b 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -102,14 +102,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: | -- 2.47.2