2021-10-08 14:44:02 -04:00
|
|
|
name: YJIT macOS
|
2021-10-01 08:45:02 -04:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
make:
|
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-07 11:57:10 -04:00
|
|
|
test_task: [ "check" ] #, "test-bundler-parallel" ] #, "test-bundled-gems" ]
|
2021-10-01 08:45:02 -04:00
|
|
|
yjit_opts: [
|
|
|
|
"--yjit",
|
|
|
|
"--yjit --yjit-call-threshold=1 --yjit-max-versions=1",
|
2021-10-22 04:08:44 -04:00
|
|
|
# "--yjit --yjit-call-threshold=1",
|
|
|
|
# "--yjit --yjit-call-threshold=2"
|
2021-10-01 08:45:02 -04:00
|
|
|
]
|
|
|
|
fail-fast: false
|
|
|
|
env:
|
|
|
|
TESTOPTS: '-q --tty=no'
|
|
|
|
RUN_OPTS: '--disable-gems ${{ matrix.yjit_opts }}'
|
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
|
|
|
steps:
|
|
|
|
- run: mkdir build
|
|
|
|
working-directory:
|
|
|
|
- name: git config
|
|
|
|
run: |
|
|
|
|
git config --global advice.detachedHead 0
|
|
|
|
git config --global init.defaultBranch garbage
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
|
|
|
brew upgrade
|
|
|
|
brew install gmp libffi openssl@1.1 zlib autoconf automake libtool readline
|
|
|
|
working-directory: src
|
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
|
|
|
echo "JOBS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
|
|
|
- run: ./autogen.sh
|
|
|
|
working-directory: src
|
|
|
|
- name: Run configure
|
|
|
|
run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
|
|
|
- run: make $JOBS incs
|
|
|
|
- run: make $JOBS
|
2021-10-07 14:49:34 -04:00
|
|
|
- run: make leaked-globals
|
|
|
|
if: matrix.test_task == 'check'
|
2021-10-01 08:45:02 -04:00
|
|
|
- run: make prepare-gems
|
|
|
|
if: ${{ matrix.test_task == 'check' }}
|
2021-10-08 14:44:02 -04:00
|
|
|
- run: make $JOBS -s ${{ matrix.test_task }} RUN_OPTS="$RUN_OPTS"
|
2021-10-01 08:45:02 -04:00
|
|
|
timeout-minutes: 60
|
|
|
|
env:
|
|
|
|
RUBY_TESTOPTS: "-q --tty=no"
|
|
|
|
TEST_BUNDLED_GEMS_ALLOW_FAILURES: "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' }}
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: build
|