mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
70 lines
2.4 KiB
YAML
70 lines
2.4 KiB
YAML
|
name: YJIT MacOS
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
make:
|
||
|
runs-on: macos-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
test_task: [ "check", "test-bundler-parallel" ] #, "test-bundled-gems" ]
|
||
|
yjit_opts: [
|
||
|
"--yjit",
|
||
|
"--yjit --yjit-call-threshold=1 --yjit-max-versions=1",
|
||
|
"--yjit --yjit-call-threshold=1",
|
||
|
"--yjit --yjit-call-threshold=2"
|
||
|
]
|
||
|
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
|
||
|
# - run: make leaked-globals
|
||
|
# if: matrix.test_task == 'check'
|
||
|
- run: make prepare-gems
|
||
|
if: ${{ matrix.test_task == 'check' }}
|
||
|
- run: make $JOBS -s ${{ matrix.test_task }}
|
||
|
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
|