Different names instead of `ulimit`

This commit is contained in:
Nobuyoshi Nakada 2020-12-16 17:39:23 +09:00
Родитель 5d8f227d0e
Коммит 4fe7f270ce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 7 добавлений и 4 удалений

11
.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