summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/windows.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index c8e431451f..700b9b95fc 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -35,7 +35,10 @@ jobs:
${{ runner.os }}-chocolatey-
- name: Install libraries with chocolatey
run: |
- Choco-Install -PackageName openssl winflexbison3
+ # Using Choco-Install for retries, but it doesn't detect failures properly
+ # if you pass multiple package names in a single command.
+ Choco-Install -PackageName openssl
+ Choco-Install -PackageName winflexbison3
shell: pwsh
- name: git config
run: |