Skip to content

Commit

Permalink
Prepend ccache PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Oct 6, 2023
1 parent ab5884c commit 3a52564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build & Install
run: |
$ccachepath = Join-Path $pwd "ccache-4.8-windows-x86_64"
$Env:PATH += ";$ccachepath"
$Env:PATH = "$ccachepath;" + $Env:PATH
$ccachecachedir = Join-Path $HOME ".ccache"
$Env:CCACHE_DIR="$ccachecachedir"
$Env:CCACHE_DIR
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Build & Install
run: |
$ccachepath = Join-Path $pwd "ccache-4.8-windows-x86_64"
$Env:PATH += ";$ccachepath"
$Env:PATH = "$ccachepath;" + $Env:PATH
$ccachecachedir = Join-Path $HOME ".ccache"
$Env:CCACHE_DIR="$ccachecachedir"
$Env:CCACHE_COMPRESS='1'
Expand Down

0 comments on commit 3a52564

Please sign in to comment.