From 69d4a8579b2a2171f55febd39b9af79230fba901 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sat, 20 Jan 2024 17:26:43 +0000 Subject: [PATCH] Try a hack to wait for the end of the benchmarks Signed-off-by: Stefan Marr --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b2ab882..a9d06e2f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,8 @@ build-and-benchmark: script: - podman build . -f Dockerfile -t rebenchdb-app - podman build . -f Dockerfile.rebench -t bench-rdb - - ~/.local/bin/podman-compose -f ./docker-compose.yml -f ./docker-compose.rebench.yml up --build --abort-on-container-exit --exit-code-from rebenchdb-app + - ~/.local/bin/podman-compose -f ./docker-compose.yml -f ./docker-compose.rebench.yml up --build -d | tee compose.log + # Hack to wait for the end of the benchmarks + - grep -q "------------------------------------------------------------------------------------------------" <(tail -f compose.log) after_script: - ~/.local/bin/podman-compose down