Skip to content

Commit

Permalink
Merge pull request #3372 from uweigand/s390x-ci
Browse files Browse the repository at this point in the history
Add QEMU CI runner for the s390x architecture
  • Loading branch information
cfallin authored Sep 20, 2021
2 parents 87ff24a + 7c5acfa commit f958c01
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,12 @@ jobs:
qemu_target: aarch64-linux-user
# FIXME(#3183) shouldn't be necessary to specify this
qemu_flags: -cpu max,pauth=off
- os: ubuntu-latest
target: s390x-unknown-linux-gnu
gcc_package: gcc-s390x-linux-gnu
gcc: s390x-linux-gnu-gcc
qemu: qemu-s390x -L /usr/s390x-linux-gnu
qemu_target: s390x-linux-user
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -326,9 +332,9 @@ jobs:
# Build and test lightbeam. Note that
# Lightbeam tests fail right now, but we don't want to block on that.
- run: cargo build --package lightbeam
if: matrix.target != 'aarch64-unknown-linux-gnu'
if: matrix.target != 'aarch64-unknown-linux-gnu' && matrix.target != 's390x-unknown-linux-gnu'
- run: cargo test --package lightbeam
if: matrix.target != 'aarch64-unknown-linux-gnu'
if: matrix.target != 'aarch64-unknown-linux-gnu' && matrix.target != 's390x-unknown-linux-gnu'
continue-on-error: true
env:
RUST_BACKTRACE: 1
Expand Down

0 comments on commit f958c01

Please sign in to comment.