criu/.github/workflows/cross-compile.yml
Radostin Stoyanov d514bacb40 ci: Run cross compile with debian testing
Debian testing has newer compiler version and running
cross compilation tests would allow us to catch any compilation
errors early.

Signed-off-by: Radostin Stoyanov <radostin@redhat.com>
2022-04-28 17:53:52 -07:00

26 lines
557 B
YAML

name: Cross Compile Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target: [
armv7-stable-cross,
armv7-testing-cross,
aarch64-stable-cross,
aarch64-testing-cross,
ppc64-stable-cross,
ppc64-testing-cross,
mips64el-stable-cross,
mips64el-testing-cross
]
steps:
- uses: actions/checkout@v2
- name: Run Cross Compilation Targets
run: >
sudo make -C scripts/ci ${{ matrix.target }}