summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-08-12 16:36:56 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-08-12 16:37:47 +0900
commitd5250808e1e06c4af7d441971e29096426611ab0 (patch)
tree813ae54e362c89bb90afcb716c96730dd25a69dd /.github/workflows/macos.yml
parent765cc17c086024540bc09124bd3628c539faa7b0 (diff)
Try testing openssl@1.1 on GitHub Actions
because somebody may want to remove the duplicated Travis osx usage later.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2343
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index f698b55410..67969a391e 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -20,7 +20,7 @@ jobs:
- name: Install libraries
run: |
brew update
- brew install gdbm gmp libffi openssl zlib ccache autoconf automake libtool readline
+ brew install gdbm gmp libffi openssl@1.1 zlib ccache autoconf automake libtool readline
- name: Checkout # not using actions/checkout because it's unstable.
run: git clone --depth=50 https://github.com/ruby/ruby .
- name: Set ENV
@@ -28,7 +28,7 @@ jobs:
echo '##[set-env name=JOBS]'-j$((1 + $(sysctl -n hw.activecpu)))
- run: autoconf
- name: configure
- run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline)
+ run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
- run: make $JOBS
- name: make check/test-bundler/test-bundled-gems
run: make -s ${{ matrix.test_task }}