mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 10:09:57 +00:00
Master branch does not have mips support yet, so automated builds for mips on the master branch fail. Temporarily split mips cross-build into a separate files until mips support will be mergded into the master branch. Suggested-by: Adrian Reber <areber@redhat.com> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
21 lines
407 B
YAML
21 lines
407 B
YAML
name: Cross Compile Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [criu-dev, master]
|
|
pull_request:
|
|
branches: [criu-dev, master]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
target: [armv7-cross, aarch64-cross, ppc64-cross]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run Cross Compilation Targets
|
|
run: >
|
|
sudo make -C scripts/travis ${{ matrix.target }}
|