mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Split a Choco-Install command
In https://github.com/ruby/ruby/runs/2552065052, while it failed to
install winflexbison3, it exited the retry loop because openssl was
installed successfully.
a5ee51f72d/images/win/scripts/ImageHelpers/ChocoHelpers.ps1
This commit is contained in:
parent
e2ccc3301e
commit
7c346e1072
1 changed files with 4 additions and 1 deletions
5
.github/workflows/windows.yml
vendored
5
.github/workflows/windows.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue