Skip to content

Commit

Permalink
ci: Add cross-arch builds
Browse files Browse the repository at this point in the history
Because we have a lot of arch conditionals that would be easy
to break.

Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Jun 28, 2024
1 parent 7ae681f commit 11c1a51
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/cross.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Cross build

on: [push, pull_request]

permissions:
actions: read

jobs:
crossarch-check:
runs-on: ubuntu-latest
name: Build on ${{ matrix.arch }}

strategy:
matrix:
include:
- arch: aarch64
distro: ubuntu_latest
- arch: s390x
distro: ubuntu_latest
- arch: ppc64le
distro: ubuntu_latest
steps:
- uses: actions/[email protected]
with:
submodules: true
set-safe-directory: true

- uses: uraimo/[email protected]
name: Build
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}

githubToken: ${{ github.token }}

run: |
set -xeu
apt update -y
apt install -y cargo libssl-dev
cargo check

0 comments on commit 11c1a51

Please sign in to comment.