Skip to content

Commit bdbf145

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

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ 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
@@ -87,7 +87,7 @@ jobs:
8787
part="monero-gui-$VERSION_GUI"
8888
fi
8989
url=$CDN_URL/${part}/${dir}/${file}
90-
if ! wget --spider "$url"; then
90+
if ! wget --spider -q "$url"; then
9191
echo "Webseed FAILED: $url"
9292
#exit 1
9393
else

0 commit comments

Comments
 (0)