Change Jenkins CI build timeout to 15 minutes.

This commit is contained in:
John Blum
2021-03-30 17:02:37 -07:00
parent 2ce7175663
commit 49398ebe89

2
Jenkinsfile vendored
View File

@@ -11,7 +11,7 @@ currentBuild.result = SUCCESS
try {
parallel check: {
stage('Check') {
timeout(time: 10, unit: 'MINUTES') {
timeout(time: 15, unit: 'MINUTES') {
node('linux') {
checkout scm
try {