forked from coreos/bootupd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Because we have a lot of arch conditionals that would be easy to break. Signed-off-by: Colin Walters <[email protected]>
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
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: armv7 | ||
distro: ubuntu_latest | ||
- 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 |