Skip to content

Commit

Permalink
Merge pull request #673 from cgwalters/ci-arch
Browse files Browse the repository at this point in the history
ci: Add cross-arch builds
  • Loading branch information
cgwalters committed Jul 1, 2024
2 parents 06563be + bc26425 commit 128bf86
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 128bf86

Please sign in to comment.