Skip to content

CI: drop s390x and ppc64le, add aarch64 #111

CI: drop s390x and ppc64le, add aarch64

CI: drop s390x and ppc64le, add aarch64 #111

Workflow file for this run

name: Other Architectures
on: [push, pull_request]
jobs:
multiarch:
runs-on: ubuntu-latest
name: ${{ matrix.distro }} on ${{ matrix.arch }}
continue-on-error: true
# Run steps on a matrix of 2 arch/distro combinations
strategy:
matrix:
include:
- arch: aarch64
distro: fedora_latest
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Perform upstream tests
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
# Not required, but speeds up builds by storing container images in
# a GitHub package registry.
githubToken: ${{ github.token }}
# Work-around ldd bug in rawhide CIs
run: |
$GITHUB_WORKSPACE/.ci/fedora/get_fedora_deps.sh
sed -i -e 's/test -r/test -f/g' -e 's/test -x/test -f/g' /bin/ldd
meson setup --buildtype=debugoptimized -Dverbose_tests=false /tmp/ci $GITHUB_WORKSPACE
meson test --suite formatters -C /tmp/ci --print-errorlogs -t 5
meson test --suite ci -C /tmp/ci --print-errorlogs -t 5