Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

display the OMSimulator hashes #179

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .CI/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
}
Expand Down