Skip to content

Commit

Permalink
[GitHub Actions] Add workaround for broken Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Oct 20, 2023
1 parent 88a3d58 commit 458fbd9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/CI_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ jobs:
- name: Init Git Submodules
working-directory: '${{ github.workspace }}\src'
run: git submodule update --init --recursive
# Workaround for https://github.com/actions/runner-images/issues/8598:
- name: Remove Strawberry Perl from PATH
run: |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
# - name: Output Runner Environment Information
# run: |
# Write-Host "------------------------------------------------------"
Expand Down

0 comments on commit 458fbd9

Please sign in to comment.