lets try to speed CI with a custom runner

This commit is contained in:
Kiril Videlov 2024-06-06 15:22:12 +02:00
parent cdd596f8bc
commit dd8c314bb3
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ jobs:
- macos-13 # [macOs, x64]
- macos-latest # [macOs, ARM64]
- ubuntu-20.04 # [linux, x64]
- windows-latest # [windows, x64]
- windows-fast # [windows, x64]
runs-on: ${{ matrix.platform }}
@ -162,7 +162,7 @@ jobs:
strategy:
matrix:
platform:
- windows-latest # [windows, x64]
- windows-fast # [windows, x64]
steps:
- name: Clear out old artifacts
shell: bash
@ -197,7 +197,7 @@ jobs:
- macos-13 # [macOs, x64]
- macos-latest # [macOs, ARM64]
- ubuntu-20.04 # [linux, x64]
- windows-latest # [windows, x64]
- windows-fast # [windows, x64]
steps:
- uses: actions/checkout@v4
with:

View File

@ -253,7 +253,7 @@ jobs:
check-rust-windows:
needs: changes
runs-on: windows-latest
runs-on: windows-fast
if: ${{ needs.changes.outputs.rust == 'true' }}
steps:
- uses: actions/checkout@v3