summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-06-28 13:41:47 -0600
committerGitHub <noreply@github.com>2023-06-28 13:41:47 -0600
commit30f2cd3d1e0f7014156d05a0b08efd6b0e92f170 (patch)
tree2e5b7cb747af3c34cad61342c9330046b87ac9ce /.github/workflows/ci.yml
parent558eb9f132f84bf2ed445fc97a26f7b92a652dbc (diff)
chore: reconfigure windows builder storage (#19601)
Use `C:` drive to build on Windows, as `D:` is too limited.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 46471dc13..ec5b578fd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -100,6 +100,12 @@ jobs:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
steps:
+ - name: Reconfigure Windows Storage
+ if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (startsWith(matrix.os, ''windows''))'
+ shell: pwsh
+ run: |-
+ New-Item -ItemType "directory" -Path "$env:TEMP/__target__"
+ New-Item -ItemType Junction -Target "$env:TEMP/__target__" -Path "D:/a/deno/deno"
- name: Configure git
run: |-
git config --global core.symlinks true