Skip to content

Commit

Permalink
Test cmplog in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Oct 18, 2023
1 parent bd64f30 commit 3948beb
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ jobs:
matrix:
environment: [ubuntu-latest, macos-latest]
toolchain: [stable, nightly]
features: ['', cmplog]
cc: [cc, clang]
exclude:
- toolchain: stable
features: cmplog
include:
- cc: cc
cxx: c++
Expand All @@ -53,13 +57,13 @@ jobs:
- name: Rustup
run: rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build -vv
run: cargo build --features=${{ matrix.features }} -vv
- name: Run afl-system-config
run: cargo run -- afl system-config
run: cargo run --features=${{ matrix.features }} -- afl system-config
- name: Build examples (with AFL instrumentation)
run: cargo run -- afl build --examples -vv
run: cargo run --features=${{ matrix.features }} -- afl build --examples -vv
- name: Run tests
run: cargo test -p cargo-afl -vv
run: cargo test --features=${{ matrix.features }} -p cargo-afl -vv
all-checks:
needs: [lint, build]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3948beb

Please sign in to comment.