mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
chore: Don't reconfigure storage on XL runners (#19641)
This commit is contained in:
parent
3be5381060
commit
673cdd7149
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
|
@ -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: `
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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__"
|
||||
|
|
Loading…
Reference in a new issue