aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-10-25 02:24:42 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-10-25 02:31:21 +0900
commitb7c8874b6290d17f6f8ebd4b2fa72c231121c714 (patch)
tree2cb85de2015d929085b2bfdc9a402b009bbf5081 /.github
parent826bbf9837e1e763c9200bb81e63560b194533dd (diff)
downloadruby-b7c8874b6290d17f6f8ebd4b2fa72c231121c714.tar.gz
Install openssl with chocolatey
OpenSSL in chocolatey is 1.1.1d but outdated 1.0.2s is in vcpkg.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 97e1b98042..915462402a 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -24,10 +24,10 @@ jobs:
steps:
- name: Install libraries with vcpkg
run: |
- vcpkg --triplet x64-windows install openssl readline zlib
+ vcpkg --triplet x64-windows install readline zlib
- name: Install libraries with chocolatey
run: |
- choco install winflexbison3
+ choco install openssl winflexbison3
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
run: |