From 6e84af2fa9c5986d9717bfdfe70c88f402742f5c Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Sun, 13 Dec 2020 20:26:22 +0900 Subject: `ulimit` does not affect another shell --- .github/workflows/mjit.yml | 13 +++++++++---- 1 file 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: -- cgit v1.2.3