1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove --jit-min-calls for now

--jit-min-calls=5 is too unstable
This commit is contained in:
Takashi Kokubun 2020-07-13 10:06:27 -07:00
parent c2a6295ec0
commit 46d1777a43
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -5,13 +5,13 @@ jobs:
strategy: strategy:
matrix: matrix:
test_task: [ "check" ] # to make job names consistent test_task: [ "check" ] # to make job names consistent
jit_opts: [ "--jit", "--jit-wait --jit-min-calls=5" ] jit_opts: [ "--jit", "--jit-wait" ]
fail-fast: false fail-fast: false
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')" if: "!contains(github.event.head_commit.message, '[ci skip]')"
env: env:
TESTOPTS: '-q --tty=no' TESTOPTS: '-q --tty=no'
RUN_OPTS: '--disable-gems --jit-warnings ${{ matrix.jit_opts }}' RUN_OPTS: '--disable-gems ${{ matrix.jit_opts }}'
GITPULLOPTIONS: --no-tags origin ${{github.ref}} GITPULLOPTIONS: --no-tags origin ${{github.ref}}
steps: steps:
- name: Install libraries - name: Install libraries