diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 00f085434b..303143f7a1 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -36,7 +36,6 @@ jobs: uses: baptiste0928/cargo-install@v1.3.0 with: crate: mdbook - version: "=0.4.37" - name: install linkcheck uses: baptiste0928/cargo-install@v1.3.0 with: @@ -50,6 +49,8 @@ jobs: - name: Check for binary blobs if: runner.os == 'Linux' run: ./scripts/check_for_blobs.sh + - name: default nightly + run: rustup default nightly - name: Build libafl debug run: cargo build -p libafl - name: Test the book @@ -558,7 +559,7 @@ jobs: - uses: actions/checkout@v3 - uses: Swatinem/rust-cache@v2 - name: Build Android - run: cargo ndk -t arm64-v8a build --release + run: cd libafl && cargo ndk -t arm64-v8a build --release #run: cargo build --target aarch64-linux-android # TODO: Figure out how to properly build stuff with clang