From c23376a03f72258bca4b637a7813b6649479df79 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Fri, 26 Feb 2021 08:38:44 +0100 Subject: [PATCH] fixed no-default-features build path --- .github/workflows/build_and_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index bcf1a20432..526ea7d57a 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build --all-features --verbose + run: cd libafl && cargo build --all-features --verbose test: runs-on: ubuntu-latest steps: @@ -35,16 +35,16 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build --no-default-features --verbose + run: cd libafl && cargo build --no-default-features --verbose no-std-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Test - run: cargo test --no-default-features --verbose + run: cd libafl && cargo test --no-default-features --verbose docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Test - run: cd libafl && cargo doc \ No newline at end of file + run: cargo doc \ No newline at end of file