summaryrefslogtreecommitdiff
path: root/.github/workflows/mjit.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-16 17:39:23 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-16 17:39:40 +0900
commit4fe7f270ce924b6339e9ccf56c3fff2de3f4fa8b (patch)
tree423fb9d661a43641613b08298788f58f195c57fc /.github/workflows/mjit.yml
parent5d8f227d0edd3c542fcac465eb82005a5f852d34 (diff)
Different names instead of `ulimit`
Diffstat (limited to '.github/workflows/mjit.yml')
-rw-r--r--.github/workflows/mjit.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 4c79c1c3cd..52cd854584 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -42,15 +42,18 @@ jobs:
- run: make $JOBS incs
- run: make $JOBS
- run: sudo make $JOBS -s install
- - run: |
+ - name: Run test
+ run: |
ulimit -c unlimited
- make $JOBS -s test RUN_OPTS="$RUN_OPTS"
+ make $JOBS -s test RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
- - run: |
+ - name: Run test-all
+ run: |
ulimit -c unlimited
make $JOBS -s test-all RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
- - run: |
+ - name: Run test-spec
+ run: |
ulimit -c unlimited
make $JOBS -s test-spec RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60