File tree Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ pipeline {
38
38
stage('Run TCK') {
39
39
steps {
40
40
sh """ \
41
- docker rm -f tck
41
+ docker rm -f tck || true
42
42
docker run -v ~/.m2/repository/org/hibernate:/root/.m2/repository/org/hibernate:z -e NO_SLEEP=true -e HIBERNATE_VERSION=$HIBERNATE_VERSION --name tck jakarta-tck-runner
43
43
docker cp tck:/tck/persistence-tck/tmp/JTreport/ ./JTreport
44
44
"""
@@ -47,8 +47,8 @@ pipeline {
47
47
failures = sh (
48
48
script: """ \
49
49
while read line; do
50
- if [[ "$line" != "* Passed." ]]; then
51
- echo "$line"
50
+ if [[ "\ $line" != *" Passed." ]]; then
51
+ echo "\ $line"
52
52
fi
53
53
done <JTreport/text/summary.txt
54
54
""",
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ pipeline {
38
38
stage('Run TCK') {
39
39
steps {
40
40
sh """ \
41
- docker rm -f tck
41
+ docker rm -f tck || true
42
42
docker run -v ~/.m2/repository/org/hibernate:/root/.m2/repository/org/hibernate:z -e NO_SLEEP=true -e HIBERNATE_VERSION=$HIBERNATE_VERSION --name tck jakarta-tck-runner
43
43
docker cp tck:/tck/persistence-tck/tmp/JTreport/ ./JTreport
44
44
"""
@@ -47,8 +47,8 @@ pipeline {
47
47
failures = sh (
48
48
script: """ \
49
49
while read line; do
50
- if [[ "$line" != "* Passed." ]]; then
51
- echo "$line"
50
+ if [[ "\ $line" != *" Passed." ]]; then
51
+ echo "\ $line"
52
52
fi
53
53
done <JTreport/text/summary.txt
54
54
""",
Original file line number Diff line number Diff line change @@ -90,11 +90,10 @@ include 'hibernate-core'
90
90
include ' hibernate-core-jakarta'
91
91
include ' hibernate-entitymanager'
92
92
include ' hibernate-testing'
93
- // todo: enable again when we can finally use the Jakarta JARs from narayana
94
- // include 'hibernate-testing-jakarta'
95
- // todo (jakarta): remove these three when the jakarta artifacts are released
96
- // include 'hibernate-jboss-jta'
97
- // include 'hibernate-transaction-client'
93
+ include ' hibernate-testing-jakarta'
94
+ // todo (jakarta): remove these two when the jakarta artifacts are released
95
+ include ' hibernate-jboss-jta'
96
+ include ' hibernate-transaction-client'
98
97
99
98
include ' hibernate-envers'
100
99
include ' hibernate-envers-jakarta'
You can’t perform that action at this time.
0 commit comments