From 49810837c24019287013366172ed31c4e63ff57d Mon Sep 17 00:00:00 2001 From: AnHeuermann <38031952+AnHeuermann@users.noreply.github.com> Date: Mon, 29 Sep 2025 11:48:06 +0200 Subject: [PATCH 1/2] Fixing git config get - Fixes ` error: key does not contain a section: get` - The argument is `--get` --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index d0e94b9..5ee14df 100755 --- a/test.py +++ b/test.py @@ -1085,9 +1085,9 @@ def cpu_name(): sys.stdout.flush() sys.stdout.flush() try: - gitReferenceFilesURL = check_output_log(["git", "config", "get", "remote.origin.url"], cwd=gitReferenceFiles).decode("utf-8") + gitReferenceFilesURL = check_output_log(["git", "config", "--get", "remote.origin.url"], cwd=gitReferenceFiles).decode("utf-8") except subprocess.CalledProcessError as e: - print(str(e)) + print(e) gitReferenceFilesURL = gitReferenceFiles gitReferenceFilesVersion = check_output_log(["git", "log", '--pretty=
CommitDateAuthorSummary
%%h%%ai%%an%%s
' % (gitReferenceFilesURL), "-1"], cwd=gitReferenceFiles).decode("utf-8") print("referenceFiles git ... got version information: %s" % gitReferenceFilesVersion) From c2be634594b0ab983ed7870ac1ff5cbab07f9837 Mon Sep 17 00:00:00 2001 From: AnHeuermann <38031952+AnHeuermann@users.noreply.github.com> Date: Mon, 29 Sep 2025 12:06:02 +0200 Subject: [PATCH 2/2] Removing extra quote --- .CI/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.CI/Jenkinsfile b/.CI/Jenkinsfile index f21a53b..e983fd0 100644 --- a/.CI/Jenkinsfile +++ b/.CI/Jenkinsfile @@ -701,7 +701,7 @@ def runRegressiontest(branch, name, extraFlags, omsHash, dbPrefix, sshConfig, om """ FMI_TESTING_FLAG="--fmi=true --fmisimulator=${env.HOME}/saved_omc/OMSimulator/install/bin/OMSimulator --default=ulimitExe=50" if (name.contains('cvode')) { - FMI_TESTING_FLAG += " --fmuType='cs'" + FMI_TESTING_FLAG += " --fmuType=cs" } }