Update Windows build workflows to use warp-windows-latest-x64-8x for release branch

This commit is contained in:
mr. M
2025-01-07 22:52:46 +01:00
parent 5c00c8f1ab
commit 3ecd929125
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
matrix: matrix:
arch: [x86_64, aarch64] arch: [x86_64, aarch64]
runs-on: windows-latest runs-on: ${{ inputs.release-branch == 'release' && 'warp-windows-latest-x64-8x' || 'windows-latest' }}
steps: steps:
- name: Checkout repository - name: Checkout repository

View File

@@ -22,7 +22,7 @@ on:
jobs: jobs:
windows-build: windows-build:
name: Build Windows - ${{ matrix.arch }} name: Build Windows - ${{ matrix.arch }}
runs-on: ${{ (inputs.release-branch == 'release' && !(inputs.generate-gpo && matrix.arch == 'aarch64')) && 'warp-ubuntu-latest-x64-6x' || 'ubuntu-latest' }} runs-on: ${{ (inputs.release-branch == 'release' && !(inputs.generate-gpo && matrix.arch == 'aarch64')) && 'warp-ubuntu-latest-x64-8x' || 'ubuntu-latest' }}
strategy: strategy:
fail-fast: false fail-fast: false