Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -158,16 +158,12 @@ stage('Build') {
state[buildEnv.tag]['containerName'] = "edb"
break;
case "sybase_jconn":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('nguoianphu/docker-sybase').pull()
}
docker.image('nguoianphu/docker-sybase').pull()
sh "./docker_db.sh sybase"
state[buildEnv.tag]['containerName'] = "sybase"
break;
case "cockroachdb":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('cockroachdb/cockroach:v23.1.12').pull()
}
docker.image('cockroachdb/cockroach:v23.1.12').pull()
sh "./docker_db.sh cockroachdb"
state[buildEnv.tag]['containerName'] = "cockroach"
break;
Expand Down
23 changes: 5 additions & 18 deletions ci/jpa-3.2-tck.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ pipeline {
stages {
stage('Build') {
steps {
script {
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('openjdk:17-jdk').pull()
}
}
dir('hibernate') {
checkout scm
withEnv([
Expand All @@ -72,35 +67,27 @@ pipeline {
).trim()
switch (params.RDBMS) {
case "mysql":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('mysql:8.2.0').pull()
}
docker.image('mysql:8.2.0').pull()
sh "./docker_db.sh mysql"
break;
case "mssql":
docker.image('mcr.microsoft.com/mssql/server@sha256:5439be9edc3b514cf647bcd3651779fa13f487735a985f40cbdcfecc60fea273').pull()
sh "./docker_db.sh mssql"
break;
case "oracle":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('gvenzl/oracle-free:23').pull()
}
docker.image('gvenzl/oracle-free:23').pull()
sh "./docker_db.sh oracle"
break;
case "postgresql":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('postgis/postgis:16-3.4').pull()
}
docker.image('postgis/postgis:16-3.4').pull()
sh "./docker_db.sh postgresql"
break;
case "db2":
docker.image('icr.io/db2_community/db2:11.5.9.0').pull()
sh "./docker_db.sh db2"
break;
case "sybase":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('nguoianphu/docker-sybase').pull()
}
docker.image('nguoianphu/docker-sybase').pull()
sh "./docker_db.sh sybase"
break;
}
Expand Down Expand Up @@ -197,4 +184,4 @@ pipeline {
notifyBuildResult maintainers: "[email protected] [email protected] [email protected] [email protected]"
}
}
}
}
Loading