Skip to content

Commit

Permalink
Merge pull request #3874 from uselagoon/arm-build-timeout
Browse files Browse the repository at this point in the history
chore: add a timeout to the arm build retry
  • Loading branch information
tobybellwood authored Feb 3, 2025
2 parents 06ba55c + dd15655 commit 42f9e0d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ pipeline {
sh script: "make -j$NPROC -O build", label: "Building images"
sh script: 'make go/test'
retry(3) {
sh script: "make -j$NPROC -O build PLATFORM_ARCH=linux/arm64", label: "Building arm images"
timeout(time: 15, unit: 'MINUTES') {
sh script: "make -j$NPROC -O build PLATFORM_ARCH=linux/arm64", label: "Building arm images"
}
}
retry(3) {
sh script: 'docker login -u amazeeiojenkins -p $PASSWORD', label: "Docker login"
Expand Down

0 comments on commit 42f9e0d

Please sign in to comment.