2019-11-13 00:48:05 -05:00
|
|
|
name: MJIT
|
2020-02-25 22:52:07 -05:00
|
|
|
on: [push, pull_request]
|
2019-11-13 00:48:05 -05:00
|
|
|
jobs:
|
2019-12-31 02:30:34 -05:00
|
|
|
make:
|
2019-11-13 00:48:05 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-12-31 02:46:17 -05:00
|
|
|
test_task: [ "check" ] # to make job names consistent
|
2020-07-13 01:10:57 -04:00
|
|
|
jit_opts: [ "--jit", "--jit-wait --jit-min-calls=5" ]
|
2019-11-13 00:48:05 -05:00
|
|
|
fail-fast: false
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
2020-02-25 23:12:46 -05:00
|
|
|
env:
|
|
|
|
TESTOPTS: '-q --tty=no'
|
|
|
|
RUN_OPTS: '--disable-gems --jit-warnings ${{ matrix.jit_opts }}'
|
2020-06-03 21:26:40 -04:00
|
|
|
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
|
2019-11-13 00:48:05 -05:00
|
|
|
steps:
|
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
|
|
|
set -x
|
2019-12-13 04:06:36 -05:00
|
|
|
sudo apt-get update -q || :
|
2019-11-13 00:48:05 -05:00
|
|
|
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
|
2020-06-03 19:33:04 -04:00
|
|
|
- name: git config
|
|
|
|
run: |
|
|
|
|
git config --global advice.detachedHead 0
|
2020-05-11 05:37:08 -04:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: src
|
2019-11-13 05:49:07 -05:00
|
|
|
- run: ./src/tool/actions-commit-info.sh
|
2019-12-11 00:01:23 -05:00
|
|
|
id: commit_info
|
2019-11-13 00:48:05 -05:00
|
|
|
- name: Fixed world writable dirs
|
|
|
|
run: |
|
2020-04-22 12:40:01 -04:00
|
|
|
chmod -v go-w $HOME $HOME/.config
|
2019-11-13 00:48:05 -05:00
|
|
|
sudo chmod -R go-w /usr/share
|
2020-04-22 12:40:01 -04:00
|
|
|
sudo bash -c 'IFS=:; for d in '"$PATH"'; do chmod -v go-w $d; done' || :
|
2019-11-13 00:48:05 -05:00
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
|
|
|
echo '::set-env name=JOBS::'-j$((1 + $(nproc --all)))
|
2020-04-04 22:53:07 -04:00
|
|
|
- run: autoconf
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: src
|
|
|
|
- run: mkdir build
|
2020-03-01 20:59:30 -05:00
|
|
|
- name: Run configure
|
2020-02-25 23:12:46 -05:00
|
|
|
run: ../src/configure -C --disable-install-doc
|
|
|
|
working-directory: build
|
2020-06-15 23:29:02 -04:00
|
|
|
- run: make $JOBS incs
|
2020-06-15 22:44:31 -04:00
|
|
|
working-directory: build
|
2020-02-25 23:12:46 -05:00
|
|
|
- run: make $JOBS
|
|
|
|
working-directory: build
|
|
|
|
- run: sudo make $JOBS -s install
|
|
|
|
working-directory: build
|
2020-07-13 01:10:57 -04:00
|
|
|
- run: make $JOBS -s test RUN_OPTS="$RUN_OPTS"
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2020-07-13 01:10:57 -04:00
|
|
|
- run: make $JOBS -s test-all RUN_OPTS="$RUN_OPTS"
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2020-07-13 01:10:57 -04:00
|
|
|
- run: make $JOBS -s test-spec RUN_OPTS="$RUN_OPTS"
|
2020-02-25 23:12:46 -05:00
|
|
|
working-directory: build
|
2020-03-07 03:34:41 -05:00
|
|
|
- uses: k0kubun/action-slack@v2.0.0
|
|
|
|
with:
|
|
|
|
payload: |
|
|
|
|
{
|
|
|
|
"ci": "GitHub Actions",
|
|
|
|
"env": "${{ github.workflow }} / ${{ matrix.test_task }} ${{ matrix.jit_opts }}",
|
|
|
|
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
2020-03-10 01:31:50 -04:00
|
|
|
"commit": "${{ github.sha }}",
|
|
|
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
2020-03-07 03:34:41 -05:00
|
|
|
}
|
|
|
|
env:
|
2020-03-10 01:31:50 -04:00
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
|
2020-03-07 03:34:41 -05:00
|
|
|
if: failure() && github.event_name == 'push'
|