From 91d2c88d2ecc7c5191c5d11685409d01fc34e489 Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Tue, 7 Nov 2023 10:54:42 +0100 Subject: [PATCH] Get rid of clean task in CI build --- ci/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/build.sh b/ci/build.sh index 743aabb63f..f97c5bf783 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -81,5 +81,4 @@ function logAndExec() { exec "${@}" } -# Clean by default otherwise the PackagedEntityManager tests fail on a node that previously ran a different DB -logAndExec ./gradlew clean check ${goal} "${@}" -Plog-test-progress=true --stacktrace +logAndExec ./gradlew check ${goal} "${@}" -Plog-test-progress=true --stacktrace