2019-11-12 21:48:05 -08:00
|
|
|
name: macOS
|
2020-02-26 12:52:07 +09:00
|
|
|
on: [push, pull_request]
|
2019-08-08 08:28:49 -07:00
|
|
|
jobs:
|
2019-11-12 20:44:00 -08:00
|
|
|
make:
|
2019-08-08 08:28:49 -07:00
|
|
|
runs-on: macos-latest
|
2019-08-11 06:26:17 +09:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-12-25 23:08:34 +09:00
|
|
|
test_task: [ "check", "test-bundler-parallel", "test-bundled-gems" ]
|
2019-08-17 09:43:05 +09:00
|
|
|
fail-fast: false
|
2020-06-04 08:22:50 +09:00
|
|
|
env:
|
2020-06-04 10:26:40 +09:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
2019-10-09 17:46:05 +09:00
|
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
2019-08-08 08:28:49 -07:00
|
|
|
steps:
|
2020-10-19 15:32:39 +09:00
|
|
|
- run: mkdir build
|
|
|
|
working-directory:
|
2019-08-08 08:28:49 -07:00
|
|
|
- name: Disable Firewall
|
|
|
|
run: |
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
|
|
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
2020-06-04 08:33:04 +09:00
|
|
|
- name: git config
|
|
|
|
run: |
|
|
|
|
git config --global advice.detachedHead 0
|
2020-05-11 18:37:08 +09:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
2019-09-17 16:59:47 +09:00
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
|
|
|
export WAITS='5 60'
|
2020-02-20 00:13:44 +09:00
|
|
|
tool/travis_retry.sh brew upgrade
|
2019-09-17 16:59:47 +09:00
|
|
|
tool/travis_retry.sh brew install gdbm gmp libffi openssl@1.1 zlib autoconf automake libtool readline
|
2020-02-26 13:12:46 +09:00
|
|
|
working-directory: src
|
2019-08-08 08:28:49 -07:00
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
2020-10-06 10:28:15 +09:00
|
|
|
echo "JOBS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
2020-04-05 11:53:07 +09:00
|
|
|
- run: autoconf
|
2020-02-26 13:12:46 +09:00
|
|
|
working-directory: src
|
2020-03-02 10:59:30 +09:00
|
|
|
- name: Run configure
|
|
|
|
run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
2020-06-16 12:29:02 +09:00
|
|
|
- run: make $JOBS incs
|
2020-02-26 13:12:46 +09:00
|
|
|
- run: make $JOBS
|
2020-12-25 23:08:34 +09:00
|
|
|
- run: make leaked-globals
|
|
|
|
if: matrix.test_task == 'check'
|
2020-03-13 10:40:00 +01:00
|
|
|
- run: make prepare-gems
|
2019-11-19 15:13:35 +09:00
|
|
|
if: matrix.test_task == 'check'
|
2020-02-26 13:12:46 +09:00
|
|
|
- run: make $JOBS -s ${{ matrix.test_task }}
|
2020-09-06 19:01:48 +12:00
|
|
|
timeout-minutes: 60
|
2019-08-11 06:26:17 +09:00
|
|
|
env:
|
2019-09-05 17:51:02 +09:00
|
|
|
RUBY_TESTOPTS: "-q --tty=no"
|
2020-09-01 10:01:48 +09:00
|
|
|
TEST_BUNDLED_GEMS_ALLOW_FAILURES: "rexml"
|
2020-03-07 00:34:41 -08:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
|
|
|
with:
|
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"ci": "GitHub Actions",
|
|
|
|
"env": "${{ github.workflow }} / ${{ matrix.test_task }}",
|
|
|
|
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
2020-03-09 22:31:50 -07:00
|
|
|
"commit": "${{ github.sha }}",
|
|
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
2020-03-07 00:34:41 -08:00
|
|
|
}
|
|
|
|
env:
|
2020-03-09 22:31:50 -07:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2020-03-07 00:34:41 -08:00
|
|
|
if: failure() && github.event_name == 'push'
|
2020-10-19 15:32:39 +09:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|