2020-04-23 10:59:18 +00:00
|
|
|
name: Cloud Hypervisor Build
|
2020-03-12 09:03:27 +00:00
|
|
|
on: [pull_request, create]
|
2020-03-05 11:16:51 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-03-12 09:03:27 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
2020-03-05 11:16:51 +00:00
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2020-03-13 09:45:50 +00:00
|
|
|
strategy:
|
2020-12-07 10:24:59 +00:00
|
|
|
fail-fast: false
|
2020-03-13 09:45:50 +00:00
|
|
|
matrix:
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
- beta
|
2020-06-12 17:56:53 +00:00
|
|
|
- nightly
|
2020-04-20 06:07:17 +00:00
|
|
|
target:
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
- x86_64-unknown-linux-musl
|
2020-03-05 11:16:51 +00:00
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-10-06 08:52:06 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2020-03-13 09:45:50 +00:00
|
|
|
- name: Install Rust toolchain (${{ matrix.rust }})
|
2020-03-05 11:16:51 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-03-13 09:45:50 +00:00
|
|
|
toolchain: ${{ matrix.rust }}
|
2020-04-20 06:07:17 +00:00
|
|
|
target: ${{ matrix.target }}
|
2020-03-05 11:16:51 +00:00
|
|
|
override: true
|
|
|
|
|
2020-10-07 09:10:27 +00:00
|
|
|
- name: Debug Check (default features)
|
2020-10-06 08:52:06 +00: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 08:52:06 +00:00
|
|
|
git checkout $GITHUB_SHA
|
2020-08-13 11:00:48 +00:00
|
|
|
|
2020-10-15 12:15:41 +00:00
|
|
|
- name: Build (acpi,kvm)
|
|
|
|
run: cargo rustc --bin cloud-hypervisor --no-default-features --features "acpi,kvm" -- -D warnings
|
2020-08-13 11:00:48 +00:00
|
|
|
|
2020-10-15 12:15:41 +00:00
|
|
|
- name: Build (kvm)
|
|
|
|
run: cargo rustc --bin cloud-hypervisor --no-default-features --features "kvm" -- -D warnings
|
2020-08-13 11:00:48 +00:00
|
|
|
|
|
|
|
- name: Release Build (default features)
|
2020-07-03 14:03:28 +00:00
|
|
|
run: cargo build --all --release --target=${{ matrix.target }}
|
2021-06-18 14:52:49 +00:00
|
|
|
|
|
|
|
- name: Check build did not modify any files
|
|
|
|
run: test -z "$(git status --porcelain)"
|