From ef558e9662e043ef1a2d4af524d37ecc37c8e01f Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 27 Sep 2021 11:46:51 -0500 Subject: [PATCH] Add PPC64 to verify QEMU issues are resolved. Add ppc64 Ubuntu testing to verify that there are no more qemu problems. Fixes #49 - https://github.com/boostorg/build/issues/663 --- .github/workflows/qemu_multiarch_linux.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/qemu_multiarch_linux.yml b/.github/workflows/qemu_multiarch_linux.yml index d32d73c26..391927ce3 100644 --- a/.github/workflows/qemu_multiarch_linux.yml +++ b/.github/workflows/qemu_multiarch_linux.yml @@ -24,8 +24,8 @@ jobs: include: - { name: 'Ubuntu 20.04 Focal (armhf)', image: 'multiarch/ubuntu-debootstrap:armhf-focal', cxx: 'g++', toolset: 'gcc' } - { name: 'Ubuntu 20.04 Focal (arm64)', image: 'multiarch/ubuntu-debootstrap:arm64-focal', cxx: 'g++', toolset: 'gcc' } + - { name: 'Ubuntu 20.04 Focal (ppc64el)', image: 'multiarch/ubuntu-debootstrap:ppc64el-focal', cxx: 'g++', toolset: 'gcc' } - { name: 'Debian 11 Bullseye (armhf)', image: 'multiarch/debian-debootstrap:armhf-bullseye', cxx: 'g++', toolset: 'gcc' } - - { name: 'Debian 11 Bullseye (arm64)', image: 'multiarch/debian-debootstrap:arm64-bullseye', cxx: 'g++', toolset: 'gcc' } name: ${{ matrix.name }} runs-on: ubuntu-latest env: @@ -38,7 +38,6 @@ jobs: steps: - name: 'Checkout' uses: actions/checkout@master - with: { submodules: true } - name: 'Install' run: | sudo apt-get -o Acquire::Retries=3 update @@ -55,7 +54,6 @@ jobs: ls -laF ${{ github.workspace }} - name: 'Run' uses: addnab/docker-run-action@v3 - continue-on-error: true with: image: ${{ matrix.image }} options: -v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --env-file docker-run-action.env