mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7a2177ea50
`--shallow-since=yesterday` for COMMIT_NUMBER_OF_DAY of `tool/actions-commit-info.sh`. COMMIT_NUMBER_OF_DAY is mainly for master branch. And `--shallow-since=yesterday` may fail on pull request. So this revert to `--depth` on pull request.
67 lines
3 KiB
YAML
67 lines
3 KiB
YAML
name: macOS
|
|
on: [push, pull_request]
|
|
jobs:
|
|
make:
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
test_task: [ "check", "test-bundler", "test-bundled-gems", "leaked-globals" ]
|
|
fail-fast: false
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
steps:
|
|
- name: Disable Firewall
|
|
run: |
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
|
|
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
|
|
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
|
|
- name: Checkout ruby
|
|
run: |
|
|
git clone --single-branch --shallow-since=yesterday --branch=${GITHUB_REF#refs/heads/} https://github.com/${{ github.repository }} src
|
|
git -C src reset --hard "$GITHUB_SHA"
|
|
if: github.event_name == 'push'
|
|
- name: Checkout a pull request
|
|
run: |
|
|
git clone --single-branch --depth=50 --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} src
|
|
git -C src reset --hard ${{ github.event.pull_request.head.sha }}
|
|
if: github.event_name == 'pull_request'
|
|
- run: ./src/tool/actions-commit-info.sh
|
|
id: commit_info
|
|
- name: Install libraries
|
|
run: |
|
|
export WAITS='5 60'
|
|
tool/travis_retry.sh brew upgrade
|
|
tool/travis_retry.sh brew install gdbm gmp libffi openssl@1.1 zlib autoconf automake libtool readline
|
|
working-directory: src
|
|
- name: Set ENV
|
|
run: |
|
|
echo '::set-env name=JOBS::'-j$((1 + $(sysctl -n hw.activecpu)))
|
|
- run: autoconf
|
|
working-directory: src
|
|
- run: mkdir build
|
|
- name: Run configure
|
|
run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
|
working-directory: build
|
|
- run: make $JOBS
|
|
working-directory: build
|
|
- run: make prepare-gems
|
|
working-directory: build
|
|
if: matrix.test_task == 'check'
|
|
- run: make $JOBS -s ${{ matrix.test_task }}
|
|
working-directory: build
|
|
env:
|
|
RUBY_TESTOPTS: "-q --tty=no"
|
|
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
|
|
TEST_BUNDLED_GEMS_ALLOW_FAILURES: "minitest,xmlrpc,rexml"
|
|
- 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 }}",
|
|
"commit": "${{ github.sha }}",
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
|
}
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
|
if: failure() && github.event_name == 'push'
|