1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Don't do the extra connectivity check in CI

This commit is contained in:
Rohan Kumar 2024-04-05 16:56:43 -04:00
parent 985fcd1e20
commit 8fb3b0fb44
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -12,7 +12,9 @@ exit_on_connectivity_failure() {
exit 0
}
sh scripts/connectivity-check.sh || exit_on_connectivity_failure
if [ -z "$JOB_URL" ]; then
sh scripts/connectivity-check.sh || exit_on_connectivity_failure
fi
dirname="$(dirname "$0")"
curl_wrapper="$dirname/curl-wrapper.sh"