mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-19 02:55:20 +00:00
5d4fe8efb9
There is a mix of v2, v3 and v4 in the codebase. Let's move to v4 everywhere because v2 seems to be using a deprecated version of nodejs. This is throwing warnings when the Github action CI is running. Signed-off-by: Jinank Jain <jinankjain@microsoft.com>
30 lines
951 B
YAML
30 lines
951 B
YAML
name: Cloud Hypervisor Cargo Fuzz Build
|
|
on: [pull_request, create]
|
|
|
|
jobs:
|
|
build:
|
|
if: github.event_name == 'pull_request'
|
|
name: Cargo Fuzz Build
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
rust:
|
|
- nightly
|
|
target:
|
|
- x86_64-unknown-linux-gnu
|
|
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
|
|
# Temporary fix for cargo-fuzz on latest nightly: https://github.com/rust-fuzz/cargo-fuzz/issues/276
|
|
#run: cargo install cargo-fuzz
|
|
run: cargo install --git https://github.com/rust-fuzz/cargo-fuzz --rev b4df3e58f767b5cad8d1aa6753961003f56f3609
|
|
- name: Cargo Fuzz Build
|
|
run: cargo fuzz build
|