1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Try testing openssl@1.1 on GitHub Actions

because somebody may want to remove the duplicated Travis osx usage
later.
This commit is contained in:
Takashi Kokubun 2019-08-12 16:36:56 +09:00
parent 765cc17c08
commit d5250808e1
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
Notes: git 2019-08-31 04:40:14 +09:00

View file

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