From 5ef5e95923e941ed6b11ae86c69356000ec52240 Mon Sep 17 00:00:00 2001 From: laraPPr Date: Wed, 8 Apr 2026 12:41:08 +0200 Subject: [PATCH 1/4] debugging test step on UGent bot --- run_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index 76558f72..972095dc 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -17,6 +17,9 @@ base_dir=$(dirname $(realpath $0)) source ${base_dir}/init/eessi_defaults +ping github.com +cat /etc/resolv.conf + # Make sure we clone the latest version. This assumes versions are of the format "v1.2.3", then picks the latest # then checks it out TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" From 83b5d5d10a8611ce1b923fee81f3e39dfea98899 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 09:52:43 +0200 Subject: [PATCH 2/4] add extra check --- run_tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index 972095dc..467fc397 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -17,7 +17,9 @@ base_dir=$(dirname $(realpath $0)) source ${base_dir}/init/eessi_defaults +echo "DEBUG" ping github.com +ping nameserver 10.141.10.246 cat /etc/resolv.conf # Make sure we clone the latest version. This assumes versions are of the format "v1.2.3", then picks the latest From 3836592dfe5e19a0a7f10519c1550c52694699d4 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:00:25 +0200 Subject: [PATCH 3/4] add other checks --- run_tests.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 467fc397..679674d7 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -18,7 +18,10 @@ base_dir=$(dirname $(realpath $0)) source ${base_dir}/init/eessi_defaults echo "DEBUG" -ping github.com +getent hosts github.com +nslookup github.com +host github.com +python -c "import socket; print(socket.gethostbyname('github.com'))" ping nameserver 10.141.10.246 cat /etc/resolv.conf From 055115b19d832e2a915942d10abd10877698d7ca Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:10:34 +0200 Subject: [PATCH 4/4] move check to after setting up the compat layer Co-authored-by: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> --- run_tests.sh | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 679674d7..50b44b91 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -17,14 +17,6 @@ base_dir=$(dirname $(realpath $0)) source ${base_dir}/init/eessi_defaults -echo "DEBUG" -getent hosts github.com -nslookup github.com -host github.com -python -c "import socket; print(socket.gethostbyname('github.com'))" -ping nameserver 10.141.10.246 -cat /etc/resolv.conf - # Make sure we clone the latest version. This assumes versions are of the format "v1.2.3", then picks the latest # then checks it out TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" @@ -33,6 +25,12 @@ CHECKOUT_LATEST="git checkout \${VERSION}" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" - +echo "DEBUG" +getent hosts github.com +nslookup github.com +host github.com +python -c "import socket; print(socket.gethostbyname('github.com'))" +ping nameserver 10.141.10.246 +cat /etc/resolv.conf # Run the test suite ./test_suite.sh "$@"