Skip to content

Commit ab6f83e

Browse files
committed
Remove standalone clang from PATH
Use the clang in Visual Studio. Recommended in actions/runner-images#10001 (comment).
1 parent 9d24f8a commit ab6f83e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci-windows.yml

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
codec-dav1d: 'LOCAL'
4646
codec-rav1e: 'LOCAL'
4747

48+
- name: Remove standalone clang from PATH
49+
run: $env:PATH = ($env:PATH -split ';' | Where-Object { $_ -ne 'C:\Program Files\LLVM\bin' }) -join ';'
4850
- name: Build aom
4951
if: steps.setup.outputs.ext-cache-hit != 'true'
5052
working-directory: ./ext

0 commit comments

Comments
 (0)