summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-07-13 10:06:27 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-07-13 10:06:34 -0700
commit46d1777a43ef88a8a0cdff041e4c1c3776161fc9 (patch)
tree9593846b7080a6b03028e902c3f96ce9d3a6b287 /.github
parentc2a6295ec04a191c689d22254ac1ad5d665e27ad (diff)
Remove --jit-min-calls for now
--jit-min-calls=5 is too unstable
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mjit.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 02a4c37bbe..161c59b797 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -5,13 +5,13 @@ jobs:
strategy:
matrix:
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
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
env:
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}}
steps:
- name: Install libraries