Skip to content

Commit 03b08e4

Browse files
Ignore restart required.
1 parent 9eeb8fe commit 03b08e4

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/VAD-compile-and-sign.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/VAD-compile.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)