2019-08-10 06:19:22 -04:00
|
|
|
name: macos
|
2019-08-09 20:34:13 -04:00
|
|
|
on:
|
2019-08-10 06:28:07 -04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2019-08-10 06:29:39 -04:00
|
|
|
- '*'
|
2019-08-08 11:28:49 -04:00
|
|
|
jobs:
|
2019-08-10 06:38:27 -04:00
|
|
|
latest:
|
2019-08-08 11:28:49 -04:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Disable Firewall
|
|
|
|
run: |
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
brew install gdbm gmp libffi openssl zlib ccache autoconf automake libtool readline
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
with:
|
2019-08-10 06:39:00 -04:00
|
|
|
fetch-depth: 20
|
2019-08-08 11:28:49 -04:00
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
|
|
|
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: make $JOBS
|
2019-08-10 06:38:27 -04:00
|
|
|
- name: make test
|
|
|
|
run: make -s test TESTOPTS="$JOBS -q --tty=no"
|
|
|
|
- name: make test-all
|
|
|
|
run: make -s test-all TESTOPTS="$JOBS -q --tty=no"
|
|
|
|
- name: make test-spec
|
2019-08-08 16:29:02 -04:00
|
|
|
run: make -s test-spec MSPECOPT=-ff # not using `-j` because sometimes `mspec -j` silently dies
|
|
|
|
- name: Leaked Globals
|
|
|
|
run: make -s leaked-globals
|