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 <walters@verbum.org>
  • Loading branch information
cgwalters committed Jun 28, 2024
1 parent 7ae681f commit bc26425
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/checkout@v3.0.2
with:
submodules: true
set-safe-directory: true

- uses: uraimo/run-on-arch-action@v2.2.0
name: Build
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}

githubToken: ${{ github.token }}

run: |
set -xeu
apt update -y
apt install -y gcc make cargo libssl-dev pkg-config
cargo check

0 comments on commit bc26425

Please sign in to comment.