diff --git a/Jenkinsfile b/Jenkinsfile index 9fce1f93a078..4646297df0c0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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; diff --git a/ci/jpa-3.2-tck.Jenkinsfile b/ci/jpa-3.2-tck.Jenkinsfile index 789b11ce3fea..111f58fb8967 100644 --- a/ci/jpa-3.2-tck.Jenkinsfile +++ b/ci/jpa-3.2-tck.Jenkinsfile @@ -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([ @@ -72,9 +67,7 @@ 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": @@ -82,15 +75,11 @@ pipeline { 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": @@ -98,9 +87,7 @@ pipeline { 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; } @@ -197,4 +184,4 @@ pipeline { notifyBuildResult maintainers: "andrea@hibernate.org steve@hibernate.org christian.beikov@gmail.com mbellade@redhat.com" } } -} \ No newline at end of file +}