Document aix-ppc64 as supported by the public build #277
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: "CI qemu cross" | |
on: [push, pull_request] | |
jobs: | |
qemu-cross: | |
strategy: | |
matrix: | |
include: [ | |
{ platform: s390x } | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- name: qemu ${{ matrix.platform }} build and test | |
uses: ./.github/actions/qemu-cross | |
with: | |
platform: ${{ matrix.platform }} |