forked from OpenIndiana/oi-userland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
37 lines (31 loc) · 829 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// OpenIndiana Userland Jenkinsfile, (c) 2021 Olaf Bohlen <[email protected]>
// ensure the jenkins user can modify SMF services, e.g. run:
// usermod -A solaris.smf.* -P 'Service Operator' jenkins
pipeline {
options {
// set a timeout of 600 minutes for this pipeline
timeout(time: 600, unit: 'MINUTES')
}
agent {
node {
label 'buildserver'
}
}
stages {
stage('setup stage') {
steps {
sh './tools/jenkinshelper.ksh -s setup'
}
}
stage('build changed components') {
steps {
sh './tools/jenkinshelper.ksh -s build_changed'
}
}
stage('create initial pkgdepotd.conf if not exists') {
steps {
sh './tools/jenkinshelper.ksh -s prepare_pkgdepotd'
}
}
}
}