diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1212f356e8..c3da1da082 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -302,14 +302,6 @@ jobs: name: "cargo test | windows" steps: - uses: actions/checkout@v4 - - name: Create Dev Drive using ReFS - run: ${{ github.workspace }}/.github/workflows/setup-dev-drive.ps1 - - # actions/checkout does not let us clone into anywhere outside ${{ github.workspace }}, so we have to copy the clone... - - name: Copy Git Repo to Dev Drive - run: | - Copy-Item -Path "${{ github.workspace }}" -Destination "${{ env.UV_WORKSPACE }}" -Recurse - - uses: dtolnay/rust-toolchain@1.84.0 with: components: rustfmt, clippy diff --git a/.github/workflows/setup-dev-drive.ps1 b/.github/workflows/setup-dev-drive.ps1 index 5ea4184ae0..a4fc3c3a61 100644 --- a/.github/workflows/setup-dev-drive.ps1 +++ b/.github/workflows/setup-dev-drive.ps1 @@ -22,4 +22,5 @@ Write-Output ` "RUSTUP_HOME=$($Drive)/.rustup" ` "CARGO_HOME=$($Drive)/.cargo" ` "UV_WORKSPACE=$($Drive)/uv" ` - >> $env:GITHUB_ENV + "PATH=$($Drive)/.cargo/bin;$env:PATH" ` + >> $env:GITHUB_ENV \ No newline at end of file