`ulimit` does not affect another shell

This commit is contained in:
Kazuhiro NISHIYAMA 2020-12-13 20:26:22 +09:00
Родитель 12eb5734b3
Коммит 6e84af2fa9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 262ED8DBB4222F7A
1 изменённых файлов: 9 добавлений и 4 удалений

13
.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: