Skip to content

Commit d710039

Browse files
committed
CI: confirm webseed urls work + versioned hashes
1 parent 6044b12 commit d710039

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/build-docker.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,24 +70,23 @@ jobs:
7070
- name: check getmonero webseed + versioned hashes file
7171
run: |
7272
CDN_URL="https://downloads.getmonero.org"
73-
if ! wget --spider "$CDN_URL/hashes-$VERSION"; then
73+
if ! wget --spider -q "$CDN_URL/hashes-$VERSION"; then
7474
echo "Webseed FAILED: hashes-$VERSION"
7575
#exit 1
7676
fi
77-
if ! wget --spider "$CDN_URL/hashes-$VERSION_GUI"; then
77+
if ! wget --spider -q "$CDN_URL/hashes-$VERSION_GUI"; then
7878
echo "Webseed FAILED: hashes-$VERSION_GUI"
7979
#exit 1
8080
fi
8181
for file in $(awk '/monero-/ {print $2}' "hashes.txt"); do
8282
dir=cli
8383
part="monero-$VERSION"
84-
echo $file
8584
if [[ $file =~ gui ]]; then
8685
dir=gui
8786
part="monero-gui-$VERSION_GUI"
8887
fi
8988
url=$CDN_URL/${part}/${dir}/${file}
90-
if ! wget --spider "$url"; then
89+
if ! wget --spider -q "$url"; then
9190
echo "Webseed FAILED: $url"
9291
#exit 1
9392
else

0 commit comments

Comments
 (0)