tiny fixes

This commit is contained in:
Dominik Maier 2021-02-26 13:21:12 +01:00
parent 4c392de98d
commit fb0d47dc2e
3 changed files with 12 additions and 6 deletions

View File

@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build - name: Build all features
run: cd libafl && cargo build --all-features --verbose run: cd libafl && cargo build --all-features --verbose
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -28,20 +28,26 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Test - name: Build examples
run: cargo build --examples --verbose run: cargo build --examples --verbose
no-std-build: no-std-build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build - name: Build no_std
run: cd libafl && cargo build --no-default-features --verbose run: cd libafl && cargo build --no-default-features --verbose
no-std-test: no-std-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Test - name: Test no_std
run: cd libafl && cargo test --no-default-features --verbose run: cd libafl && cargo test --no-default-features --verbose
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt -- --check
docs: docs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@ -20,7 +20,7 @@ Feel free to open issues or contact us directly. Thank you for your support. <3
## The Core Concepts ## The Core Concepts
We're still working on the documentation. In the meantime, you can watch the Video from last year's Rc3, here: We're still working on the documentation. In the meantime, you can watch the Video from last year's Rc3, here:
[![Video explaining libAFL's core concepts](http://img.youtube.com/vi/3RWkT1Q5IV0/0.jpg)](http://www.youtube.com/watch?v=3RWkT1Q5IV0 "Fuzzers Like LEGO") [![Video explaining libAFL's core concepts](http://img.youtube.com/vi/3RWkT1Q5IV0/3.jpg)](http://www.youtube.com/watch?v=3RWkT1Q5IV0 "Fuzzers Like LEGO")
## Roadmap for release ## Roadmap for release
+ Minset corpus scheduler + Minset corpus scheduler

View File

@ -13,7 +13,7 @@ fn main() {
let out_dir = out_dir.to_string_lossy().to_string(); let out_dir = out_dir.to_string_lossy().to_string();
let out_dir_path = Path::new(&out_dir); let out_dir_path = Path::new(&out_dir);
println!("cargo:rerun-if-changed=./runtime/rt.c",); println!("cargo:rerun-if-changed=../libfuzzer_runtime/rt.c",);
println!("cargo:rerun-if-changed=harness.cc"); println!("cargo:rerun-if-changed=harness.cc");
let libpng = format!("{}/libpng-1.6.37", &out_dir); let libpng = format!("{}/libpng-1.6.37", &out_dir);