Browse Source

Move cargo target dir to `C:` drive on Windows CI job

There is apparently more free space on the C drive
tags/v0.3.0-rc
Philipp Oppermann 2 years ago
parent
commit
9830bb8865
Failed to extract signature
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      .github/workflows/ci.yml

+ 5
- 0
.github/workflows/ci.yml View File

@@ -20,6 +20,11 @@ jobs:
runs-on: ${{ matrix.platform }}
timeout-minutes: 60
steps:
- name: Override cargo target dir (Windows only)
run: echo "CARGO_TARGET_DIR=C:\cargo-target" >> "$GITHUB_ENV"
shell: bash
if: runner.os == 'Windows'

- uses: actions/checkout@v3
- uses: r7kamura/rust-problem-matchers@v1.1.0
- run: cargo --version --verbose


Loading…
Cancel
Save