Adapt to GLib 2.79 documentation #213
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ppc64le | |
distro: fedora_latest | |
- arch: s390x | |
distro: fedora_latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |