From d5250808e1e06c4af7d441971e29096426611ab0 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 12 Aug 2019 16:36:56 +0900 Subject: [PATCH] Try testing openssl@1.1 on GitHub Actions because somebody may want to remove the duplicated Travis osx usage later. --- .github/workflows/macos.yml | 4 ++-- 1 file 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 }}