From 609d1c196f3ee621deb69590d9434ce69aeec7cd Mon Sep 17 00:00:00 2001 From: Kyle Mayes Date: Thu, 4 Nov 2021 22:36:38 -0400 Subject: [PATCH] Remove LIBCLANG_PATH from CI (#137) --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c113d54f..5bd0a2a9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,9 +39,6 @@ jobs: args: --verbose --features ${{ matrix.clang[1] }} -- --nocapture - name: Cargo Test (Runtime) uses: actions-rs/cargo@v1 - env: - # Needed to not find MinGW when loading at runtime - LIBCLANG_PATH: ${{ runner.temp }}/llvm-${{ matrix.clang[0] }}/lib with: command: test args: --verbose --features "${{ matrix.clang[1] }} runtime" -- --nocapture