Skip to content

Commit

Permalink
Fixed Error checking in yml
Browse files Browse the repository at this point in the history
Sometimes installing dependencies dont work for some reason 🤷🏻‍♂️
  • Loading branch information
bud3699 committed Dec 17, 2024
1 parent 68b9240 commit 5dc8777
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/Submit-To-SignPath.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,17 @@ jobs:

- name: Install Visual Studio 2022 dependencies
run: |
choco install visualstudio2022-workload-manageddesktop -y || exit 1
choco install visualstudio2022-workload-nativedesktop -y || exit 1
choco install visualstudio2022-workload-vctools -y || exit 1
choco install windowsdriverkit11 -y || exit 1
choco install visualstudio2022-workload-manageddesktop -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install visualstudio2022-workload-nativedesktop -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install visualstudio2022-workload-vctools -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install windowsdriverkit11 -y
if ($LASTEXITCODE -ne 0) { exit 1 }
- name: Build the driver
run: |
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,17 @@ jobs:

- name: Install Visual Studio 2022 dependencies
run: |
choco install visualstudio2022-workload-manageddesktop -y || exit 1
choco install visualstudio2022-workload-nativedesktop -y || exit 1
choco install visualstudio2022-workload-vctools -y || exit 1
choco install windowsdriverkit11 -y || exit 1
choco install visualstudio2022-workload-manageddesktop -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install visualstudio2022-workload-nativedesktop -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install visualstudio2022-workload-vctools -y
if ($LASTEXITCODE -ne 0) { exit 1 }
choco install windowsdriverkit11 -y
if ($LASTEXITCODE -ne 0) { exit 1 }
- name: Build the driver
run: |
Expand Down

0 comments on commit 5dc8777

Please sign in to comment.