From ae400e5ce8e7a064e544ed559be3fc65765116d3 Mon Sep 17 00:00:00 2001 From: expend20 <36543551+expend20@users.noreply.github.com> Date: Mon, 19 Sep 2022 09:20:33 +0200 Subject: [PATCH] Remove clang download from windows CI (#791) * Attempt to remove clang 12 setup * frida_gdiplus added to CI --- .github/workflows/build_and_test.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 95d7019b92..f8d7274494 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -215,18 +215,15 @@ jobs: command: clippy - name: Build docs run: cargo doc - - name: Install LLVM and Clang # required for bindgen to work, see https://github.com/rust-lang/rust-bindgen/issues/1797 - uses: KyleMayes/install-llvm-action@32c4866ebb71e0949e8833eb49beeebed48532bd - with: - version: "12.0" - directory: ${{ runner.temp }}/llvm - name: Set LIBCLANG_PATH run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV - name: install cargo-make run: cargo install --force cargo-make - uses: ilammy/msvc-dev-cmd@v1 - - name: Build frida + - name: Build fuzzers/frida_libpng run: cd fuzzers/frida_libpng/ && cargo make test + - name: Build fuzzers/frida_gdiplus + run: cd fuzzers/frida_gdiplus/ && cargo make test macos: runs-on: macOS-latest