Skip to content

Commit

Permalink
Merge pull request #23623 from edsantiago/nuke-buildtime-quay-check
Browse files Browse the repository at this point in the history
CI: remove build-time quay check
  • Loading branch information
openshift-merge-bot[bot] authored Aug 14, 2024
2 parents 6638337 + 5b6de98 commit 62b953b
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions contrib/cirrus/prebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,26 +94,3 @@ cat ${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/required_host_ports.txt | \
err_retry 9 1000 1 nc -zv -w 13 $host $port
fi
done

# Verify we can pull metadata from a few key testing images on quay.io
# in the 'libpod' namespace. This is mostly aimed at validating the
# quay.io service is up and responsive. Images were hand-picked with
# grep -E -ro 'quay.io/libpod/.+:latest' test | sort -u
TEST_IMGS=(\
alpine:latest
busybox:latest
alpine_labels:latest
alpine_nginx:latest
alpine_healthcheck:latest
badhealthcheck:latest
cirros:latest
)

msg "Checking quay.io test image accessibility"
for testimg in "${TEST_IMGS[@]}"; do
fqin="quay.io/libpod/$testimg"
echo " $fqin"
# Belt-and-suspenders: Catch skopeo (somehow) returning False or null
# in addition to "bad" (invalid) JSON.
skopeo inspect --retry-times 5 "docker://$fqin" | jq -e . > /dev/null
done

0 comments on commit 62b953b

Please sign in to comment.