mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 03:21:13 +00:00
33 lines
926 B
YAML
33 lines
926 B
YAML
|
name: Cloud Hypervisor Cross Build
|
||
|
on: [pull_request, create]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
if: github.event_name == 'pull_request'
|
||
|
name: Build
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
rust:
|
||
|
- stable
|
||
|
target:
|
||
|
- aarch64-unknown-linux-gnu
|
||
|
- aarch64-unknown-linux-musl
|
||
|
steps:
|
||
|
- name: Code checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Install Rust toolchain (${{ matrix.rust }})
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: ${{ matrix.rust }}
|
||
|
target: ${{ matrix.target }}
|
||
|
override: true
|
||
|
- name: Disable "with-serde" in kvm-bindings
|
||
|
run: sed -i 's/"with-serde",\ //g' vmm/Cargo.toml
|
||
|
- name: Build
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
use-cross: true
|
||
|
command: build
|
||
|
args: --target=${{ matrix.target }} --no-default-features --features "mmio"
|