From 50b95fbe6864872a8bf061647036f94b721985d4 Mon Sep 17 00:00:00 2001 From: Damien Duportal Date: Tue, 6 Aug 2024 13:09:55 +0200 Subject: [PATCH] Revert " chore(Jenkinsfile) increase DockerHub rate limit with authentication" (#850) --- Jenkinsfile | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 42ec43b63..5b68edfda 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,15 +58,13 @@ pipeline { } steps { script { - infra.withDockerCredentials { - if(isUnix()) { - sh './build.sh' - sh './build.sh test' - // If the tests are passing for Linux AMD64, then we can build all the CPU architectures - sh 'docker buildx bake --file docker-bake.hcl linux' - } else { - powershell '& ./build.ps1 test' - } + if(isUnix()) { + sh './build.sh' + sh './build.sh test' + // If the tests are passing for Linux AMD64, then we can build all the CPU architectures + sh 'docker buildx bake --file docker-bake.hcl linux' + } else { + powershell '& ./build.ps1 test' } } }