2020-04-23 12:59:18 +02:00
|
|
|
name: Cloud Hypervisor Build
|
2020-03-12 10:03:27 +01:00
|
|
|
on: [pull_request, create]
|
2020-03-05 12:16:51 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-03-12 10:03:27 +01:00
|
|
|
if: github.event_name == 'pull_request'
|
2020-03-05 12:16:51 +01:00
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2020-03-13 10:45:50 +01:00
|
|
|
strategy:
|
2020-12-07 10:24:59 +00:00
|
|
|
fail-fast: false
|
2020-03-13 10:45:50 +01:00
|
|
|
matrix:
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
- beta
|
2020-06-12 18:56:53 +01:00
|
|
|
- nightly
|
2020-04-20 08:07:17 +02:00
|
|
|
target:
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
- x86_64-unknown-linux-musl
|
2020-03-05 12:16:51 +01:00
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-10-06 10:52:06 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2020-03-13 10:45:50 +01:00
|
|
|
- name: Install Rust toolchain (${{ matrix.rust }})
|
2020-03-05 12:16:51 +01:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-03-13 10:45:50 +01:00
|
|
|
toolchain: ${{ matrix.rust }}
|
2020-04-20 08:07:17 +02:00
|
|
|
target: ${{ matrix.target }}
|
2020-03-05 12:16:51 +01:00
|
|
|
override: true
|
|
|
|
|
2020-10-07 09:10:27 +00:00
|
|
|
- name: Debug Check (default features)
|
2020-10-06 10:52:06 +02:00
|
|
|
run: |
|
2020-10-07 09:10:27 +00:00
|
|
|
git rev-list origin/master..$GITHUB_SHA | xargs -t -I % sh -c 'git checkout %; cargo check --all --target=${{ matrix.target }}'
|
2020-10-06 10:52:06 +02:00
|
|
|
git checkout $GITHUB_SHA
|
2020-08-13 12:00:48 +01:00
|
|
|
|
2020-10-15 14:15:41 +02:00
|
|
|
- name: Build (acpi,kvm)
|
|
|
|
run: cargo rustc --bin cloud-hypervisor --no-default-features --features "acpi,kvm" -- -D warnings
|
2020-08-13 12:00:48 +01:00
|
|
|
|
2020-10-15 14:15:41 +02:00
|
|
|
- name: Build (kvm)
|
|
|
|
run: cargo rustc --bin cloud-hypervisor --no-default-features --features "kvm" -- -D warnings
|
2020-08-13 12:00:48 +01:00
|
|
|
|
|
|
|
- name: Release Build (default features)
|
2020-07-03 15:03:28 +01:00
|
|
|
run: cargo build --all --release --target=${{ matrix.target }}
|