Jenkinsfile: Add timeout for build

In order to conserve CI resources limit build execution to one hour.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2019-11-22 13:51:13 +00:00 committed by Sebastien Boeuf
parent d642060378
commit 0213177027

3
Jenkinsfile vendored
View File

@ -1,5 +1,8 @@
pipeline{
agent { node { label 'bionic' } }
options {
timeout(time: 1, unit: 'HOURS')
}
stages {
stage ('Checkout') {
steps {