Skip to content

Commit

Permalink
Rollup merge of rust-lang#134924 - ranger-ross:cleanup-ci-output, r=K…
Browse files Browse the repository at this point in the history
…obzol

ci: Cleanup docker build logs in CI

Cleaning up the CI logs to make reviewing CI failures easier. This PR adds a `::group` around the docker tag hash input which is pretty large (250+ lines) and is probably not relevant for most people.

Related to rust-lang#134910 , see this [comment](rust-lang#134910 (comment))
  • Loading branch information
matthiaskrgr authored Dec 30, 2024
2 parents b31c9d5 + b4d14ce commit 05c0cd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ci/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
# Include cache version. Can be used to manually bust the Docker cache.
echo "2" >> $hash_key

echo "Image input"
echo "::group::Image checksum input"
cat $hash_key
echo "::endgroup::"

cksum=$(sha512sum $hash_key | \
awk '{print $1}')
Expand Down

0 comments on commit 05c0cd3

Please sign in to comment.