From 5ef5e95923e941ed6b11ae86c69356000ec52240 Mon Sep 17 00:00:00 2001 From: laraPPr Date: Wed, 8 Apr 2026 12:41:08 +0200 Subject: [PATCH 01/17] 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 02/17] 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 03/17] 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 04/17] 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 "$@" From e7a4e1674d3a6911fbd06ba08e5e26562ac1f0ed Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:45:50 +0200 Subject: [PATCH 05/17] add new checks --- run_tests.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 50b44b91..a18667c7 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -27,10 +27,18 @@ CHECKOUT_LATEST="git checkout \${VERSION}" ./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 + +echo "=== HTTPS test ===" +curl -I https://github.com + +echo "=== Proxy env ===" +env | grep -i proxy + +echo "=== Git proxy config ===" +git config --list | grep proxy + +echo "=== Git remote test ===" +git ls-remote https://github.com/EESSI/test-suite/ || true cat /etc/resolv.conf # Run the test suite ./test_suite.sh "$@" From dadab4adeaa2a6b599a49cf8963a7deafbee7b98 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 11:13:55 +0200 Subject: [PATCH 06/17] move the DEBUG messages Co-authored-by: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> --- run_tests.sh | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index a18667c7..af639ad9 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,23 +22,10 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" +DEBUG="getent hosts github.com && echo && echo DEBUG && git ls-remote https://github.com/EESSI/test-suite/" # 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 +./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" -echo "=== HTTPS test ===" -curl -I https://github.com - -echo "=== Proxy env ===" -env | grep -i proxy - -echo "=== Git proxy config ===" -git config --list | grep proxy - -echo "=== Git remote test ===" -git ls-remote https://github.com/EESSI/test-suite/ || true -cat /etc/resolv.conf # Run the test suite ./test_suite.sh "$@" From 393ca47a049a68e13122bb2a4815e184902a3dfe Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 11:23:28 +0200 Subject: [PATCH 07/17] add more logging --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index af639ad9..81a2513b 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 4462c3c6366da83fef98d6ffffed432bb889d688 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 11:39:33 +0200 Subject: [PATCH 08/17] Apply suggestions from code review Co-authored-by: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 81a2513b..35b50146 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && nslookup github.com 10.141.10.246 && curl -v --connect-to ::140.82.121.4 https://github.com && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 087790bac353aa6b3f318ddf74b7aa38a6911f6a Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 11:51:23 +0200 Subject: [PATCH 09/17] remove nsloopup because not available in compat layer --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 35b50146..962e8fab 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && nslookup github.com 10.141.10.246 && curl -v --connect-to ::140.82.121.4 https://github.com && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && curl -v --connect-to ::140.82.121.4 https://github.com && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From cc4c0aca3776c915f79cab34b14cb74cf8c5bb35 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:38:08 +0200 Subject: [PATCH 10/17] Apply suggestion from @laraPPr --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 962e8fab..bbab0a32 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && curl -v --connect-to ::140.82.121.4 https://github.com && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && curl -v --connect-to ::140.82.121.4 https://github.com && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 04ffc381bab0b16005b115844a39f41535be10a6 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:39:33 +0200 Subject: [PATCH 11/17] Apply suggestion from @laraPPr --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index bbab0a32..72f18e0b 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && curl -v --connect-to ::140.82.121.4 https://github.com && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && echo "curl -v --connect-to ::140.82.121.4 https://github.com" && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 0549c42d76a906c2574b825faa272c76df69d2c5 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:39:57 +0200 Subject: [PATCH 12/17] Apply suggestion from @laraPPr --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 72f18e0b..76575d62 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && echo "curl -v --connect-to ::140.82.121.4 https://github.com" && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From b77e4992b58b474b3eb55fb8637ca37a6049037c Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:51:39 +0200 Subject: [PATCH 13/17] fix DEBUG env --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 76575d62..47560606 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(which curl) | grep -E "libc|nss" && ldd $(which git) | grep -E "libc|nss" && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(which curl) | grep -E 'libc|nss' && ldd $(which git) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From fece3592ddac675713eedb782a491720b714f118 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 14:02:03 +0200 Subject: [PATCH 14/17] use ls instead of which --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 47560606..5efe9db2 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(which curl) | grep -E 'libc|nss' && ldd $(which git) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && ldd $(ls $(command -v git)) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From c6c1435e8548be52978436f5349d43b926c62594 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 14:43:07 +0200 Subject: [PATCH 15/17] Apply suggestion from @laraPPr --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 5efe9db2..a560cb90 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && ldd $(ls $(command -v git)) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 06feea4dafe246ebb3f12055656b54d677e055bb Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 15:52:21 +0200 Subject: [PATCH 16/17] Update run_tests.sh --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index a560cb90..3254bf3f 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && git ls-remote https://github.com/EESSI/test-suite/ && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}" From 0cb5ac81ed53c6cb12773e2d3246ea9b51d81116 Mon Sep 17 00:00:00 2001 From: Lara Ramona Peeters <49882639+laraPPr@users.noreply.github.com> Date: Thu, 9 Apr 2026 16:07:19 +0200 Subject: [PATCH 17/17] Apply suggestion from @laraPPr --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 3254bf3f..f26dfa6e 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -22,7 +22,7 @@ source ${base_dir}/init/eessi_defaults TEST_CLONE="git clone https://github.com/EESSI/test-suite EESSI-test-suite && cd EESSI-test-suite" LATEST_VERSION="VERSION=\$(git tag | grep '^v[0-9]\+\.[0-9]\+\.[0-9]\+$' | sort -t. -k 1,1n -k 2,2n -k 3,3n | tail -n 1)" CHECKOUT_LATEST="git checkout \${VERSION}" -DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && git ls-remote https://github.com/EESSI/test-suite/ && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" +DEBUG="getent hosts github.com && echo && echo DEBUG && ldd $(ls $(command -v curl)) | grep -E 'libc|nss' && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/ && curl -I https://github.com && env | grep -i proxy && git config --list | grep proxy && git ls-remote https://github.com/EESSI/test-suite/" # Git clone has to be run in compat layer, to make the git command available ./run_in_compat_layer_env.sh "${DEBUG} && ${TEST_CLONE} && ${LATEST_VERSION} && ${CHECKOUT_LATEST}"