mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
1db30405e1
If the PR updated cancel outstanding jobs to conserve resources. Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
34 lines
859 B
YAML
34 lines
859 B
YAML
name: Cloud Hypervisor Cargo Fuzz Build
|
|
on: [pull_request, merge_group]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Cargo Fuzz Build
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
rust:
|
|
- nightly
|
|
target:
|
|
- x86_64-unknown-linux-gnu
|
|
env:
|
|
RUSTFLAGS: -D warnings
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install Rust toolchain (${{ matrix.rust }})
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
target: ${{ matrix.target }}
|
|
override: true
|
|
- name: Install Cargo fuzz
|
|
run: cargo install cargo-fuzz
|
|
- name: Fuzz Build
|
|
run: cargo fuzz build
|
|
- name: Fuzz Check
|
|
run: cargo fuzz check
|