From 4924de56d3a875f283c90d2449927c4cb8352a61 Mon Sep 17 00:00:00 2001 From: Damien Duportal Date: Tue, 6 Aug 2024 11:45:22 +0200 Subject: [PATCH] Revert " chore(Jenkinsfile) increase DockerHub rate limit with authentication" --- 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' } } }