We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde5e54 commit 5b471aeCopy full SHA for 5b471ae
1 file changed
ci/verify-build.sh
@@ -28,6 +28,12 @@ if [ "$TOOLCHAIN" = "nightly" ] ; then
28
rustup component add rust-src
29
fi
30
31
+# Print GHA workflow commands
32
+echo_if_ci() {
33
+ # Discard stderr so the "set -x" trace doesn't show up
34
+ { [ -n "${CI:-}" ] && echo "$1"; } 2> /dev/null
35
+}
36
+
37
# Run the tests for a specific target
38
test_target() {
39
target="$1"
@@ -293,11 +299,15 @@ filter_and_run() {
293
299
}
294
300
295
301
for target in $targets; do
302
+ echo_if_ci "::group::Target: $target"
296
303
filter_and_run "$target"
304
+ echo_if_ci "::endgroup::"
297
305
done
298
306
307
for target in ${no_dist_targets:-}; do
308
309
filter_and_run "$target" 1
310
311
312
313
# Make sure we didn't accidentally filter everything
0 commit comments