-
Notifications
You must be signed in to change notification settings - Fork 491
/
Jenkinsfile-Debian
43 lines (43 loc) · 1.66 KB
/
Jenkinsfile-Debian
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
37
38
39
40
41
42
43
pipeline {
agent {
node {
label 'FreeNAS-webui'
}
}
stages {
stage('Checkout') {
steps {
dir('src') {
checkout scm
}
sh 'git clone http://github.com/truenas/repo-mgmt mgmt || ( cd mgmt ; git pull )'
}
}
stage('Cleanup') {
steps {
sh 'cd src && rm -rf * && git reset --hard HEAD'
}
}
stage('Build') {
steps {
sh 'env DEB_SIGN_KEYID=92B8B783F95A684C0A3B643073CF445610D143A1 ./mgmt/scripts/debuilder --path src/debian -D bullseye-truenas-unstable -vvv'
sh 'env DEB_SIGN_KEYID=92B8B783F95A684C0A3B643073CF445610D143A1 ./mgmt/scripts/debuilder --path src/src/middlewared -D bullseye-truenas-unstable -vvv'
sh 'env DEB_SIGN_KEYID=92B8B783F95A684C0A3B643073CF445610D143A1 ./mgmt/scripts/debuilder --path src/src/freenas -D bullseye-truenas-unstable -vvv'
}
}
stage('Push to buildd') {
steps {
withCredentials([file(credentialsId: 'dput.cf', variable: 'dputcfg')]) {
sh "dput -c \"${dputcfg}\" mini-buildd-mini-buildd-host src/truenas*.changes"
sh "dput -c \"${dputcfg}\" mini-buildd-mini-buildd-host src/src/middlewared*.changes"
sh "dput -c \"${dputcfg}\" mini-buildd-mini-buildd-host src/src/truenas-files*.changes"
}
}
}
}
post {
failure {
mail bcc: '', body: "<b>Jenkins: Middleware Build Failure</b><br>Project: ${env.JOB_NAME} <br>Build Number: ${env.BUILD_NUMBER} <br> URL build: ${env.BUILD_URL}", cc: '', charset: 'UTF-8', from: '', mimeType: 'text/html', replyTo: '', subject: "ERROR CI: Project name -> ${env.JOB_NAME}", to: "[email protected]";
}
}
}