Try to workaround hibernate-platform not being published to maven local

This commit is contained in:
Christian Beikov 2024-12-20 14:06:45 +01:00
parent 071bc279e4
commit c27b134e69
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ pipeline {
sh """ \
rm -Rf ./results
docker rm -f tck || true
docker run -v ~/.m2/repository/org/hibernate:/home/jenkins/.m2/repository/org/hibernate:z ${dockerRunOptions} -e HOME=/home/jenkins -e RDBMS=${params.RDBMS} -e HIBERNATE_VERSION=$HIBERNATE_VERSION --name tck jakarta-tck-runner || true
docker run -v ~/.m2/repository/org/hibernate:/home/jenkins/.m2/repository/org/hibernate:z ${dockerRunOptions} -e MAVEN_OPTS=-Dmaven.repo.local=/home/jenkins/.m2 -e RDBMS=${params.RDBMS} -e HIBERNATE_VERSION=$HIBERNATE_VERSION --name tck jakarta-tck-runner || true
docker cp tck:/tck/persistence-tck/bin/target/failsafe-reports ./results
docker cp tck:/tck/persistence-tck/bin/target/test-reports ./results
"""