name: Cloud Hypervisor Build on: [pull_request, create] jobs: build: if: github.event_name == 'pull_request' name: Build runs-on: ubuntu-latest strategy: matrix: rust: - stable - beta target: - x86_64-unknown-linux-gnu - x86_64-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: Build run: cargo build --release --target=${{ matrix.target }}