From ad55cd46900abe1169f2472026cfc4b6c3709faf Mon Sep 17 00:00:00 2001 From: Adrian Pop Date: Thu, 21 Nov 2024 20:13:04 +0100 Subject: [PATCH] display the OMSimulator hashes --- .CI/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.CI/Jenkinsfile b/.CI/Jenkinsfile index 2250276..a322a32 100644 --- a/.CI/Jenkinsfile +++ b/.CI/Jenkinsfile @@ -627,7 +627,8 @@ def runRegressiontest(branch, name, extraFlags, omsHash, dbPrefix, sshConfig, om git reset --hard "${omsHash}" || exit 1 git rev-parse HEAD > .newhash - echo "OMSimulator Hash: ${omsHash}" + echo "OMSimulator Hash: ${omsHash} and commit:" + cat .newhash || true echo Old Hash: cat ~/saved_omc/OMSimulator/.githash || true @@ -644,6 +645,8 @@ def runRegressiontest(branch, name, extraFlags, omsHash, dbPrefix, sshConfig, om git rev-parse HEAD > ~/saved_omc/OMSimulator/.githash || exit 1 fi + echo OMSimulator version: + ${env.HOME}/saved_omc/OMSimulator/install/bin/OMSimulator --version """ FMI_TESTING_FLAG="--fmi=true --fmisimulator=${env.HOME}/saved_omc/OMSimulator/install/bin/OMSimulator --default=ulimitExe=50" }