mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
CI: Fix redirection errors
This commit is contained in:
parent
54ef6c312a
commit
e66ac2a743
5 changed files with 10 additions and 10 deletions
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -134,8 +134,8 @@ jobs:
|
|||
|
||||
- name: make ${{ matrix.test_task }}
|
||||
run: |
|
||||
${LAUNCHABLE_STDOUT:+exec 1> >(tee "${LAUNCHABLE_STDOUT}")}
|
||||
${LAUNCHABLE_STDERR:+exec 2> >(tee "${LAUNCHABLE_STDERR}")}
|
||||
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
|
||||
test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
|
||||
|
||||
ulimit -c unlimited
|
||||
make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
|
||||
|
|
4
.github/workflows/modgc.yml
vendored
4
.github/workflows/modgc.yml
vendored
|
@ -144,8 +144,8 @@ jobs:
|
|||
|
||||
- name: make ${{ matrix.test_task }}
|
||||
run: |
|
||||
${LAUNCHABLE_STDOUT:+exec 1> >(tee "${LAUNCHABLE_STDOUT}")}
|
||||
${LAUNCHABLE_STDERR:+exec 2> >(tee "${LAUNCHABLE_STDERR}")}
|
||||
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
|
||||
test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
|
||||
|
||||
$SETARCH make -s ${{ matrix.test_task }} \
|
||||
${TESTS:+TESTS="$TESTS"} \
|
||||
|
|
4
.github/workflows/ubuntu.yml
vendored
4
.github/workflows/ubuntu.yml
vendored
|
@ -120,8 +120,8 @@ jobs:
|
|||
|
||||
- name: make ${{ matrix.test_task }}
|
||||
run: |
|
||||
${LAUNCHABLE_STDOUT:+exec 1> >(tee "${LAUNCHABLE_STDOUT}")}
|
||||
${LAUNCHABLE_STDERR:+exec 2> >(tee "${LAUNCHABLE_STDERR}")}
|
||||
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
|
||||
test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
|
||||
|
||||
$SETARCH make -s ${{ matrix.test_task }} \
|
||||
${TESTS:+TESTS="$TESTS"} \
|
||||
|
|
4
.github/workflows/yjit-macos.yml
vendored
4
.github/workflows/yjit-macos.yml
vendored
|
@ -143,8 +143,8 @@ jobs:
|
|||
|
||||
- name: make ${{ matrix.test_task }}
|
||||
run: |
|
||||
${LAUNCHABLE_STDOUT:+exec 1> >(tee "${LAUNCHABLE_STDOUT}")}
|
||||
${LAUNCHABLE_STDERR:+exec 2> >(tee "${LAUNCHABLE_STDERR}")}
|
||||
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
|
||||
test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
|
||||
|
||||
make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"} \
|
||||
RUN_OPTS="$RUN_OPTS" \
|
||||
|
|
4
.github/workflows/yjit-ubuntu.yml
vendored
4
.github/workflows/yjit-ubuntu.yml
vendored
|
@ -191,8 +191,8 @@ jobs:
|
|||
|
||||
- name: make ${{ matrix.test_task }}
|
||||
run: |
|
||||
${LAUNCHABLE_STDOUT:+exec 1> >(tee "${LAUNCHABLE_STDOUT}")}
|
||||
${LAUNCHABLE_STDERR:+exec 2> >(tee "${LAUNCHABLE_STDERR}")}
|
||||
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
|
||||
test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
|
||||
|
||||
make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"} \
|
||||
RUN_OPTS="$RUN_OPTS" MSPECOPT=--debug SPECOPTS="$SPECOPTS" \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue