From ab6f83edf3f6923b953ed5ec5b1b244c59a6e268 Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Tue, 11 Jun 2024 11:40:14 -0700 Subject: [PATCH] Remove standalone clang from PATH Use the clang in Visual Studio. Recommended in https://github.com/actions/runner-images/issues/10001#issuecomment-2150541007. --- .github/workflows/ci-windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 1cdd63ff98..249ef12e95 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -45,6 +45,8 @@ jobs: codec-dav1d: 'LOCAL' codec-rav1e: 'LOCAL' + - name: Remove standalone clang from PATH + run: $env:PATH = ($env:PATH -split ';' | Where-Object { $_ -ne 'C:\Program Files\LLVM\bin' }) -join ';' - name: Build aom if: steps.setup.outputs.ext-cache-hit != 'true' working-directory: ./ext