Skip to content

Commit

Permalink
fix(ci): set 1h timeout for every build
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Aug 30, 2018
1 parent 53cfa83 commit b7ef993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import groovy.transform.Field
@Field final String nodeVersion = '10.4.1'

// Run targets in parallel
parallel(
timeout(time: 1, unit: 'HOURS') { parallel(
// the 'proper' CI pipeline runs in docker
"docker": {
node(label: 'linux') { ws("${env.WORKSPACE}/docker") {
Expand Down Expand Up @@ -107,5 +107,5 @@ parallel(
}}
}}}}
}
)
)}

1 comment on commit b7ef993

@victorb
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hah, just came here to add this to the Jenkinsfile, thanks for changing it already! 🥇

Please sign in to comment.