diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-06-28 14:44:39 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 20:44:39 +0000 |
commit | 673cdd714921124fae8ecd3c3a405e37a8ece404 (patch) | |
tree | 675ccac410346c857eac4b74337ce05121bad09b | |
parent | 3be538106027f9018634fb34306902e2fe6c4c97 (diff) |
chore: Don't reconfigure storage on XL runners (#19641)
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index fb6947e3e..8d11e297f 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -109,7 +109,7 @@ __0`, const reconfigureWindowsStorage = { name: "Reconfigure Windows Storage", if: [ - "startsWith(matrix.os, 'windows')", + "startsWith(matrix.os, 'windows') && !endsWith(matrix.os, '-xl')", ], shell: "pwsh", run: ` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec5b578fd..d197c2b5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,7 +101,7 @@ jobs: RUST_BACKTRACE: full steps: - name: Reconfigure Windows Storage - if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (startsWith(matrix.os, ''windows''))' + if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (startsWith(matrix.os, ''windows'') && !endsWith(matrix.os, ''-xl''))' shell: pwsh run: |- New-Item -ItemType "directory" -Path "$env:TEMP/__target__" |