Skip to content

Commit 87b7007

Browse files
committed
ccache action should work on all platforms
1 parent c1ba4aa commit 87b7007

1 file changed

Lines changed: 2 additions & 17 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,12 @@ jobs:
3434
with:
3535
python-version: '3.13'
3636

37-
# - name: Install Subversion (SVN)
38-
# if: matrix.platform == 'macos-latest'
39-
# run: |
40-
# brew install svn
41-
# svn --version # Verify installation
42-
43-
# - name: Install Subversion (SVN)
44-
# if: matrix.platform == 'windows-latest'
45-
# run: |
46-
# choco install svn -y
47-
# $env:PATH = "C:\Program Files (x86)\Subversion\bin;$env:PATH"
48-
# echo "C:\Program Files (x86)\Subversion\bin" >> $env:GITHUB_PATH
49-
# svn --version # Verify installation
50-
5137
- name: ccache
52-
if: matrix.platform == 'ubuntu-latest'
5338
uses: hendrikmuhs/ccache-action@30ae3502c7f2d3200209bf2f90eccef2357896cf # v1.2
5439
with:
5540
key: ${{ github.job }}-${{ matrix.platform }}
5641
verbose: 1
57-
create-symlink: true
42+
create-symlink: ${{ matrix.platform != 'windows-latest' }}
5843

5944
- name: Create binary
6045
env:
@@ -109,7 +94,7 @@ jobs:
10994
- name: Prepare binary on Windows
11095
if: matrix.platform == 'windows-latest'
11196
run: |
112-
$binary = Get-ChildItem dfetch-*-x86_64.exe | Select-Object -First 1
97+
$binary = Get-ChildItem dfetch-*.exe | Select-Object -First 1
11398
Copy-Item $binary -Destination dfetch.exe -Force
11499
Get-ChildItem
115100
shell: pwsh

0 commit comments

Comments
 (0)