From 1f4087f4282cfbf9b7a4ec9e3ff40857bce2852d Mon Sep 17 00:00:00 2001 From: Webb Scales <7795764+webbnh@users.noreply.github.com> Date: Mon, 5 Jun 2023 08:24:10 -0400 Subject: [PATCH] Adapt to the change from F36 to F38 in the CI base container. (#3449) * Correct half-bit rounding errors in legacy post-processing test gold files These differences are due to the change in the CI container from F36 to F38. * Correct the alembic-migration check command invocation PBENCH-1161 --- .../postprocess/gold/fio-0/result/reference-result/result.json | 2 +- agent/tool-scripts/postprocess/gold/uperf-0/result.json | 2 +- agent/tool-scripts/postprocess/gold/uperf-1/result.json | 2 +- build.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/agent/tool-scripts/postprocess/gold/fio-0/result/reference-result/result.json b/agent/tool-scripts/postprocess/gold/fio-0/result/reference-result/result.json index 1b75018699..c3df8a1c3d 100644 --- a/agent/tool-scripts/postprocess/gold/fio-0/result/reference-result/result.json +++ b/agent/tool-scripts/postprocess/gold/fio-0/result/reference-result/result.json @@ -861,7 +861,7 @@ } ], "uid" : "client_hostname:%client_hostname%", - "value" : 4032829.66081469 + "value" : 4032829.6608147 }, { "client_hostname" : "perf36-1", diff --git a/agent/tool-scripts/postprocess/gold/uperf-0/result.json b/agent/tool-scripts/postprocess/gold/uperf-0/result.json index e967bccaf8..132de40195 100644 --- a/agent/tool-scripts/postprocess/gold/uperf-0/result.json +++ b/agent/tool-scripts/postprocess/gold/uperf-0/result.json @@ -1086,7 +1086,7 @@ } ], "uid" : "client_hostname:%client_hostname%-server_hostname:%server_hostname%-server_port:%server_port%", - "value" : 92.9351098640984 + "value" : 92.9351098640983 } ] }, diff --git a/agent/tool-scripts/postprocess/gold/uperf-1/result.json b/agent/tool-scripts/postprocess/gold/uperf-1/result.json index bd978b837a..c1fcec0073 100644 --- a/agent/tool-scripts/postprocess/gold/uperf-1/result.json +++ b/agent/tool-scripts/postprocess/gold/uperf-1/result.json @@ -1421,7 +1421,7 @@ } ], "uid" : "client_hostname:%client_hostname%-server_hostname:%server_hostname%-server_port:%server_port%", - "value" : 0.503149997412358 + "value" : 0.503149997412359 }, { "client_hostname" : "perf102", diff --git a/build.sh b/build.sh index 3b6c597dc3..9ea258b9ae 100755 --- a/build.sh +++ b/build.sh @@ -31,7 +31,7 @@ isort --check . make -C dashboard run_lint # We need to invoke the alembic check with host networking so that it can reach # the PostgreSQL pod it creates. -EXTRA_PODMAN_SWITCHES="--network host" jenkins/run tox -e alembic-migration check +EXTRA_PODMAN_SWITCHES="--network host" jenkins/run tox -e alembic-migration -- check set +x # Run unit tests