mirror of
https://github.com/denoland/deno.git
synced 2025-01-18 03:44:05 -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 = {
|
const reconfigureWindowsStorage = {
|
||||||
name: "Reconfigure Windows Storage",
|
name: "Reconfigure Windows Storage",
|
||||||
if: [
|
if: [
|
||||||
"startsWith(matrix.os, 'windows')",
|
"startsWith(matrix.os, 'windows') && !endsWith(matrix.os, '-xl')",
|
||||||
],
|
],
|
||||||
shell: "pwsh",
|
shell: "pwsh",
|
||||||
run: `
|
run: `
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -101,7 +101,7 @@ jobs:
|
||||||
RUST_BACKTRACE: full
|
RUST_BACKTRACE: full
|
||||||
steps:
|
steps:
|
||||||
- name: Reconfigure Windows Storage
|
- 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
|
shell: pwsh
|
||||||
run: |-
|
run: |-
|
||||||
New-Item -ItemType "directory" -Path "$env:TEMP/__target__"
|
New-Item -ItemType "directory" -Path "$env:TEMP/__target__"
|
||||||
|
|
Loading…
Add table
Reference in a new issue