We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58da5c6 commit 353f8f5Copy full SHA for 353f8f5
.github/workflows/build_default.yaml
@@ -128,6 +128,8 @@ jobs:
128
for i in {1..3}; do
129
if curl -w "(DL) <== %{url}\n" -qfsSL "https://dl-cdn.alpinelinux.org/alpine/edge/releases/loongarch64/${ROOTFS_FILE}" -o "/tmp/alpine-minirootfs-loongarch64.tar.gz"; then
130
if tar -tzf "/tmp/alpine-minirootfs-loongarch64.tar.gz" &>/dev/null; then
131
+ echo "/tmp/alpine-minirootfs-loongarch64.tar.gz" | xargs -I "{}" bash -c \
132
+ 'printf "\nFile: $(basename {})\n Type: $(file -b {})\n B3sum: $(b3sum {} | cut -d" " -f1)\n SHA256sum: $(sha256sum {} | cut -d" " -f1)\n Size: $(du -bh {} | cut -f1)\n"'
133
break
134
else
135
echo "Invalid tar archive, retrying... ($i/3)"
0 commit comments