From ea7eda3b19fe1df0a7c27b9ddff11979077d6147 Mon Sep 17 00:00:00 2001 From: Julien Leduc <julien.leduc@cern.ch> Date: Mon, 13 May 2019 12:02:39 +0200 Subject: [PATCH] Adding preflight test against the latest eos from dev branch. --- continuousintegration/orchestration/tests/upgrade-eos.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/continuousintegration/orchestration/tests/upgrade-eos.sh b/continuousintegration/orchestration/tests/upgrade-eos.sh index 240acba0c5..815915701a 100755 --- a/continuousintegration/orchestration/tests/upgrade-eos.sh +++ b/continuousintegration/orchestration/tests/upgrade-eos.sh @@ -87,5 +87,14 @@ kubectl -n ${NAMESPACE} exec ctaeos -- eos fs ls /fst echo "Available disk space inside EOS container:" kubectl -n ${NAMESPACE} exec ctaeos -- df -h +# Launching preflight test against the new version of EOS +PREFLIGHTTEST_SCRIPT='preflighttest.sh' +if [ -x ${PREFLIGHTTEST_SCRIPT} ]; then + echo "Launching preflight test: ${PREFLIGHTTEST_SCRIPT}" + ./$(basename ${PREFLIGHTTEST_SCRIPT}) -n ${NAMESPACE} +else + echo "SKIPPING preflight test: ${PREFLIGHTTEST_SCRIPT} not available" +fi + echo "Launching archive_retrieve.sh:" ./archive_retrieve.sh -n ${NAMESPACE} -- GitLab