summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-13 20:26:22 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-13 20:26:22 +0900
commit6e84af2fa9c5986d9717bfdfe70c88f402742f5c (patch)
treeaa875ad3ecf37c759a6698737d0948480ee4f1c9 /.github
parent12eb5734b3ca1dabfd8286de1d0841d80286fe02 (diff)
`ulimit` does not affect another shell
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mjit.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 023fec601d..4c79c1c3cd 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -42,12 +42,17 @@ jobs:
- run: make $JOBS incs
- run: make $JOBS
- run: sudo make $JOBS -s install
- - run: ulimit -c unlimited
- - run: make $JOBS -s test RUN_OPTS="$RUN_OPTS"
+ - run: |
+ ulimit -c unlimited
+ make $JOBS -s test RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
- - run: make $JOBS -s test-all RUN_OPTS="$RUN_OPTS"
+ - run: |
+ ulimit -c unlimited
+ make $JOBS -s test-all RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
- - run: make $JOBS -s test-spec RUN_OPTS="$RUN_OPTS"
+ - run: |
+ ulimit -c unlimited
+ make $JOBS -s test-spec RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
- uses: k0kubun/action-slack@v2.0.0
with: