Skip to content

Commit ad2bc6d

Browse files
clean up workflow output
1 parent de0f109 commit ad2bc6d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build_all_application_deps.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ jobs:
110110
111111
# Loop through each application
112112
for app in ${{ join(matrix.config.applications, ' ') }}; do
113+
echo "::group::📦 Building application: ${app}"
113114
echo "Processing application: ${app}"
114115
115116
# Create and activate environment from manifest
@@ -174,11 +175,13 @@ jobs:
174175
${app}-env oci://ghcr.io/${OCI_USERNAME,,}/ci-common-build-cache/${app}-${label}
175176
image=$(echo ${{ matrix.config.os }} | sed 's|-|:|')
176177
spack buildcache push --only dependencies --with-build-dependencies --update-index --unsigned \
177-
--base-image ${image} --tag latest ${app}-env
178+
--base-image ${image} --tag latest ${app}-env |& perl -pe 's|.+?Fetching http|::debug::\0'
178179
179180
# Deactivate environment and clean up for next iteration
180181
spack env deactivate
181182
spack env rm -y ${app}-env
183+
184+
echo "::endgroup::"
182185
done
183186
184187
return ${rc:-0}

0 commit comments

Comments
 (0)