Skip to content

Commit 63c66ba

Browse files
authored
Use self-hosted windows runner (#531)
* Use self-hosted windows runner * Don't cache KiCad on Windows
1 parent 489da63 commit 63c66ba

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
matrix:
5858
config:
5959
- name: Windows
60-
runs-on: windows-large
60+
runs-on: [self-hosted, windows-large]
6161
- name: macOS
6262
runs-on: macos-15-xlarge
6363
- name: Ubuntu
@@ -93,14 +93,6 @@ jobs:
9393
# Install KiCad fresh
9494
brew install --cask kicad
9595
96-
- name: Cache KiCad (Windows)
97-
if: matrix.config.name == 'Windows'
98-
id: cache-kicad-windows
99-
uses: actions/cache@v4
100-
with:
101-
path: C:\Program Files\KiCad
102-
key: ${{ runner.os }}-kicad-${{ env.KICAD_VERSION }}
103-
10496
- name: Install KiCad (Windows)
10597
if: matrix.config.name == 'Windows' && steps.cache-kicad-windows.outputs.cache-hit != 'true'
10698
run: |

0 commit comments

Comments
 (0)