From 0f31c6bdc41656e5c7d0cdafcf91973c5baea47d Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Thu, 16 May 2019 15:31:44 -0400 Subject: Cirrus: Confirm networking is working Thanks to @edsantiago for suggestion to use nc Signed-off-by: Chris Evich --- .cirrus.yml | 3 +++ contrib/cirrus/required_host_ports.txt | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 contrib/cirrus/required_host_ports.txt diff --git a/.cirrus.yml b/.cirrus.yml index d26c1ec11..fe09ea988 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -123,6 +123,9 @@ gating_task: timeout_in: 20m + networking_script: # Don't bother going further if something is down + - 'while read host port; do nc -zv -w 13 $host $port || exit 1; done < ${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/required_host_ports.txt' + gate_script: # N/B: entrypoint.sh resets $GOSRC (same as make clean) - '/usr/local/bin/entrypoint.sh install.tools |& ${TIMESTAMP}' diff --git a/contrib/cirrus/required_host_ports.txt b/contrib/cirrus/required_host_ports.txt new file mode 100644 index 000000000..9248e497a --- /dev/null +++ b/contrib/cirrus/required_host_ports.txt @@ -0,0 +1,4 @@ +github.com 22 +docker.io 443 +quay.io 443 +registry.fedoraproject.org 443 -- cgit v1.2.3-54-g00ecf