Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 4fcb88d

Browse files
committed
Build: Review pipeline
1 parent 48124cc commit 4fcb88d

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

Jenkinsfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
#!groovy
22

3-
@Library('github.com/red-panda-ci/jenkins-pipeline-library@v3.1.6') _
3+
@Library('github.com/teecke/jenkins-pipeline-library@v3.4.1') _
44

55
// Initialize global config
6-
cfg = jplConfig('general-concepts', 'doc', '', [slack: '#integrations', email:'redpandaci+general-concepts@gmail.com'])
6+
cfg = jplConfig('general-concepts', 'doc', '', [email: env.CIKAIROS_NOTIFY_EMAIL_TARGETS])
77

88
pipeline {
9-
agent none
9+
agent { label 'docker' }
1010

1111
stages {
1212
stage ('Initialize') {
13-
agent { label 'docker' }
1413
steps {
1514
jplStart(cfg)
1615
}
1716
}
1817
stage ('Make release'){
19-
agent { label 'docker' }
2018
when { branch 'release/new' }
2119
steps {
2220
jplMakeRelease(cfg,true)
@@ -35,7 +33,6 @@ pipeline {
3533
ansiColor('xterm')
3634
buildDiscarder(logRotator(artifactNumToKeepStr: '20',artifactDaysToKeepStr: '30'))
3735
disableConcurrentBuilds()
38-
skipDefaultCheckout()
39-
timeout(time: 1, unit: 'DAYS')
36+
timeout(time: 10, unit: 'MINUTES')
4037
}
4138
}

0 commit comments

Comments
 (0)