From 91838db20396d7f1649e3d554da42e926e5d739a Mon Sep 17 00:00:00 2001 From: Joseph Petersen Date: Mon, 9 Dec 2024 09:41:04 +0100 Subject: [PATCH] Revert "Test ReFS" This reverts commit e3b3ec29e57ff84100e397fe79d552b8a3f8e043. --- .github/workflows/ci.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60e3e8a..24a6aaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,18 +47,6 @@ jobs: - os: windows-2022 cache: true DOTNET_INSTALL_DIR: '' - - os: windows-2019 - cache: false - DOTNET_INSTALL_DIR: 'E:\dotnet' - - os: windows-2022 - cache: false - DOTNET_INSTALL_DIR: 'E:\dotnet' - - os: windows-2019 - cache: true - DOTNET_INSTALL_DIR: 'E:\dotnet' - - os: windows-2022 - cache: true - DOTNET_INSTALL_DIR: 'E:\dotnet' fail-fast: false steps: - name: Collect Workflow Telemetry @@ -69,21 +57,12 @@ jobs: with: fetch-depth: 0 - - name: Setup ReFS Drive - uses: samypr100/setup-dev-drive@v3 - if: ${{ startsWith(matrix.os, 'windows') && matrix.DOTNET_INSTALL_DIR == 'E:\dotnet' }} - with: - drive-size: 10GB - drive-type: Dynamic - drive-path: D:\dev_drive.vhdx - - name: Set Windows Environment Variables if: ${{ startsWith(matrix.os, 'windows') && matrix.DOTNET_INSTALL_DIR != '' }} shell: pwsh run: | echo "DOTNET_INSTALL_DIR=${{ matrix.DOTNET_INSTALL_DIR }}" >> $ENV:GITHUB_ENV - $driveLetter = "${{ matrix.DOTNET_INSTALL_DIR }}"[0] - echo "NUGET_PACKAGES=${driveLetter}:\nuget\packages" >> $ENV:GITHUB_ENV + echo "NUGET_PACKAGES=D:\nuget\packages" >> $ENV:GITHUB_ENV - name: Print matrix values run: |