Skip to content

Commit

Permalink
Revert "chore(Jenkinsfile) avoid Docker API rate limit" (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
dduportal authored Aug 6, 2024
1 parent 1df9d53 commit 6067551
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,13 @@ pipeline {
}
steps {
script {
// This function is defined in the jenkins-infra/pipeline-library
infra.withDockerCredentials {
if(isUnix()) {
sh 'make build'
sh 'make test'
// If the tests are passing for Linux AMD64, then we can build all the CPU architectures
sh 'make every-build'
} else {
powershell '& ./build.ps1 test'
}
if(isUnix()) {
sh 'make build'
sh 'make test'
// If the tests are passing for Linux AMD64, then we can build all the CPU architectures
sh 'make every-build'
} else {
powershell '& ./build.ps1 test'
}
}
}
Expand Down

0 comments on commit 6067551

Please sign in to comment.