From 30f2cd3d1e0f7014156d05a0b08efd6b0e92f170 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 28 Jun 2023 13:41:47 -0600 Subject: chore: reconfigure windows builder storage (#19601) Use `C:` drive to build on Windows, as `D:` is too limited. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows/ci.yml') 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 -- cgit v1.2.3