From 4fe7f270ce924b6339e9ccf56c3fff2de3f4fa8b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 16 Dec 2020 17:39:23 +0900 Subject: [PATCH] Different names instead of `ulimit` --- .github/workflows/mjit.yml | 11 +++++++---- 1 file 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