Skip to content

Commit

Permalink
Remove standalone clang from PATH
Browse files Browse the repository at this point in the history
Use the clang in Visual Studio. Recommended in
actions/runner-images#10001 (comment).
  • Loading branch information
wantehchang committed Jun 11, 2024
1 parent 9d24f8a commit ab6f83e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab6f83e

Please sign in to comment.