File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ jobs:
145145 test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
146146 test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
147147
148+ verbose () { set -x && "$@" && set +x; } && verbose \
148149 make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"} \
149150 RUN_OPTS="$RUN_OPTS" \
150151 SPECOPTS="$SPECOPTS"
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ jobs:
195195 test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
196196 test -n "${LAUNCHABLE_STDERR}" && exec 2> >(tee "${LAUNCHABLE_STDERR}")
197197
198+ verbose () { set -x && "$@" && set +x; } && verbose \
198199 make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"} \
199200 RUN_OPTS="$RUN_OPTS" MSPECOPT=--debug SPECOPTS="$SPECOPTS" \
200201 YJIT_BENCH_OPTS="$YJIT_BENCH_OPTS" YJIT_BINDGEN_DIFF_OPTS="$YJIT_BINDGEN_DIFF_OPTS"
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ jobs:
113113
114114 - name : make ${{ matrix.test_task }}
115115 run : >-
116+ verbose () { set -x && "$@" && set +x; } && verbose
116117 make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
117118 RUN_OPTS="$RUN_OPTS"
118119 SPECOPTS="$SPECOPTS"
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ jobs:
153153
154154 - name : make ${{ matrix.test_task }}
155155 run : >-
156+ verbose () { set -x && "$@" && set +x; } && verbose
156157 make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
157158 RUN_OPTS="$RUN_OPTS" MSPECOPT=--debug SPECOPTS="$SPECOPTS"
158159 TESTOPTS="$TESTOPTS"
You can’t perform that action at this time.
0 commit comments