1
0
Fork 0
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:
Takashi Kokubun 2021-05-10 21:32:55 -07:00
parent e2ccc3301e
commit 7c346e1072
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -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: |