2019-08-10 19:19:22 +09:00
|
|
|
name: macos
|
2019-08-10 09:34:13 +09:00
|
|
|
on:
|
2019-08-10 19:28:07 +09:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2019-08-10 20:25:58 +09:00
|
|
|
branches:
|
2019-08-10 19:29:39 +09:00
|
|
|
- '*'
|
2019-08-08 08:28:49 -07:00
|
|
|
jobs:
|
2019-08-10 19:38:27 +09:00
|
|
|
latest:
|
2019-08-08 08:28:49 -07:00
|
|
|
runs-on: macos-latest
|
2019-08-11 06:26:17 +09:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-08-11 19:33:03 +09:00
|
|
|
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
2019-08-17 09:43:05 +09:00
|
|
|
fail-fast: false
|
2019-08-08 08:28:49 -07:00
|
|
|
steps:
|
|
|
|
- name: Disable Firewall
|
|
|
|
run: |
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
2019-08-19 19:37:07 +09:00
|
|
|
brew update || { sleep 5 && brew update; } || { sleep 60 && brew update; }
|
2019-08-12 17:46:11 +09:00
|
|
|
brew install gdbm gmp libffi openssl@1.1 zlib autoconf automake libtool readline
|
2019-08-14 09:23:57 +09:00
|
|
|
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
|
|
|
|
- name: Checkout ruby/ruby
|
|
|
|
run: git clone --depth=50 https://github.com/ruby/ruby . && git reset --hard "$GITHUB_SHA"
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
- name: Checkout a pull request
|
|
|
|
run: git clone --depth=50 "--branch=$GITHUB_BRANCH" "https://github.com/${GITHUB_REPO}" . && git reset --hard "$GITHUB_REV"
|
|
|
|
env:
|
|
|
|
GITHUB_REV: ${{ github.event.pull_request.head.sha }}
|
|
|
|
GITHUB_BRANCH: ${{ github.event.pull_request.head.ref }}
|
|
|
|
GITHUB_REPO: ${{ github.event.pull_request.head.repo.full_name }}
|
|
|
|
if: github.event_name == 'pull_request'
|
2019-08-08 08:28:49 -07:00
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
|
|
|
echo '##[set-env name=JOBS]'-j$((1 + $(sysctl -n hw.activecpu)))
|
|
|
|
- run: autoconf
|
|
|
|
- name: configure
|
2019-08-12 16:36:56 +09:00
|
|
|
run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
2019-08-08 08:28:49 -07:00
|
|
|
- run: make $JOBS
|
2019-08-27 15:11:01 +09:00
|
|
|
- name: Tests
|
2019-09-04 12:03:28 +09:00
|
|
|
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
2019-08-11 06:26:17 +09:00
|
|
|
env:
|
|
|
|
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
|
2019-08-20 23:58:36 +09:00
|
|
|
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
|
2019-08-19 09:41:51 +09:00
|
|
|
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
|
2019-09-05 17:47:51 +09:00
|
|
|
- name: Tests (test-bundled-gems)
|
2019-09-04 12:51:39 +09:00
|
|
|
# Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
|
2019-09-05 17:51:02 +09:00
|
|
|
run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
|
|
|
|
env:
|
|
|
|
RUBY_TESTOPTS: "-q --tty=no"
|
2019-08-19 09:41:51 +09:00
|
|
|
continue-on-error: true
|
2019-08-20 23:58:36 +09:00
|
|
|
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
|
2019-08-08 13:29:02 -07:00
|
|
|
- name: Leaked Globals
|
|
|
|
run: make -s leaked-globals
|
2019-08-22 23:10:54 +09:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
2019-08-19 01:49:51 +09:00
|
|
|
with:
|
2019-08-19 03:14:18 +09:00
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"attachments": [{
|
2019-08-22 23:10:54 +09:00
|
|
|
"text": "${{ job.status}}: <https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks|${{ github.workflow }} / ${{ matrix.test_task }}> " +
|
|
|
|
"(<https://github.com/${{ github.repository }}/commit/${{ github.sha }}|" + "${{ github.sha }}".substring(0, 10) + ">) " +
|
|
|
|
"of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}",
|
2019-08-19 03:14:18 +09:00
|
|
|
"color": "danger"
|
|
|
|
}]
|
|
|
|
}
|
2019-08-19 01:49:51 +09:00
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
if: failure() && github.event_name == 'push'
|