We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be4565 commit 8d4154cCopy full SHA for 8d4154c
1 file changed
.github/workflows/continuous-integration.yml
@@ -27,8 +27,13 @@ jobs:
27
- name: 🏎 Optimize Windows runner
28
if: matrix.os == 'windows-latest'
29
run: |
30
+ # extremely slow Network/Disk IO on Windows agent compared to Ubuntu/Mac
31
+ # https://github.com/actions/setup-dotnet/issues/260#issuecomment-2533613266
32
echo "DOTNET_INSTALL_DIR=D:\dotnet" >> $env:GITHUB_ENV
33
echo "NUGET_PACKAGES=D:\nuget" >> $env:GITHUB_ENV
34
+ # Cache restoration is orders of magnitude slower on Windows compared to Linux
35
+ # https://github.com/actions/cache/issues/752#issuecomment-4267871236
36
+ echo "ACTIONS_CACHE_PREFER_BSD_TAR_ON_WINDOWS=true" >> $env:GITHUB_ENV
37
- name: 🧑🔧 Install .NET SDK
38
uses: actions/setup-dotnet@v5
39
- name: ℹ️ Show .NET info
0 commit comments