File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ jobs:
2727 - name : Install Visual Studio 2022 dependencies
2828 run : |
2929 choco install visualstudio2022-workload-manageddesktop -y
30- if ($LASTEXITCODE -ne 0) { exit 1 }
30+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3131
3232 choco install visualstudio2022-workload-nativedesktop -y
33- if ($LASTEXITCODE -ne 0) { exit 1 }
33+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3434
3535 choco install visualstudio2022-workload-vctools -y
36- if ($LASTEXITCODE -ne 0) { exit 1 }
36+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3737
3838 choco install windowsdriverkit11 -y
39- if ($LASTEXITCODE -ne 0) { exit 1 }
39+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
4040
4141 # Fix the WDK paths for InfVerif if needed - only for x64 builds
4242 - name : Fix WDK paths for InfVerif
Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ jobs:
2727 - name : Install Visual Studio 2022 dependencies
2828 run : |
2929 choco install visualstudio2022-workload-manageddesktop -y
30- if ($LASTEXITCODE -ne 0) { exit 1 }
30+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3131
3232 choco install visualstudio2022-workload-nativedesktop -y
33- if ($LASTEXITCODE -ne 0) { exit 1 }
33+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3434
3535 choco install visualstudio2022-workload-vctools -y
36- if ($LASTEXITCODE -ne 0) { exit 1 }
36+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
3737
3838 choco install windowsdriverkit11 -y
39- if ($LASTEXITCODE -ne 0) { exit 1 }
39+ if ($LASTEXITCODE -ne 0 -and $LASTEXITCODE -ne 3010 ) { exit 1 }
4040
4141 # Fix the WDK paths for InfVerif if needed - only for x64 builds
4242 - name : Fix WDK paths for InfVerif
You can’t perform that action at this time.
0 commit comments