ruby-changes:64129
From: Kazuhiro <ko1@a...>
Date: Sun, 13 Dec 2020 20:27:46 +0900 (JST)
Subject: [ruby-changes:64129] 6e84af2fa9 (master): `ulimit` does not affect another shell
https://git.ruby-lang.org/ruby.git/commit/?id=6e84af2fa9 From 6e84af2fa9c5986d9717bfdfe70c88f402742f5c Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA <zn@m...> Date: Sun, 13 Dec 2020 20:26:22 +0900 Subject: `ulimit` does not affect another shell diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index 023fec6..4c79c1c 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -42,12 +42,17 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L42 - 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@v... with: -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/