1
0
Fork 0
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:
Matt Mastracci 2023-06-28 14:44:39 -06:00 committed by GitHub
parent 3be5381060
commit 673cdd7149
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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: `

View file

@ -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__"