1
Fork 0

Rollup merge of #134924 - ranger-ross:cleanup-ci-output, r=Kobzol

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 #134910 , see this [comment](https://github.com/rust-lang/rust/issues/134910#issuecomment-2565612463)
This commit is contained in:
Matthias Krüger 2024-12-30 19:34:57 +01:00 committed by GitHub
commit 05c0cd31e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}')