-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
90 lines (65 loc) · 4.81 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!groovy
properties(
[
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '10', daysToKeepStr: '', numToKeepStr: '10')),
[$class: 'CopyArtifactPermissionProperty', projectNames: '*'],
pipelineTriggers([[$class: 'PeriodicFolderTrigger', interval: '1d']])
]
)
def prepareEnv() {
deleteDir()
unstash 'binaries'
env.WORKSPACE = pwd()
sh "find ${env.WORKSPACE}"
sh 'mkdir -p SPECS SOURCES'
sh "cp build/distributions/*.zip SOURCES/upsilon-reactor.zip"
}
def buildDockerContainer() {
prepareEnv();
unstash 'el7'
sh 'mv RPMS/noarch/*.rpm RPMS/noarch/upsilon-reactor.rpm'
sh 'unzip -jo SOURCES/upsilon-reactor.zip "upsilon-reactor-*/var/pkg/Dockerfile" "upsilon-reactor-*/.buildid" -d . '
tag = sh script: 'buildid -pk tag', returnStdout: true
println "tag: ${tag}"
sh "docker build -t 'upsilonproject/reactor:${tag}' ."
sh "docker tag 'upsilonproject/reactor:${tag}' 'upsilonproject/reactor:latest' "
sh "docker save upsilonproject/reactor:${tag} > upsilon-reactor-docker-${tag}.tgz"
archive "upsilon-reactor-docker-${tag}.tgz"
}
def buildRpm(dist) {
prepareEnv()
sh 'unzip -l SOURCES/upsilon-reactor.zip'
sh 'unzip -jo SOURCES/upsilon-reactor.zip "upsilon-reactor-*/var/pkg/upsilon-reactor.spec" "upsilon-reactor-*/.buildid.rpmmacro" -d SPECS/'
sh "find ${env.WORKSPACE}"
sh "rpmbuild -ba SPECS/upsilon-reactor.spec --define '_topdir ${env.WORKSPACE}' --define 'dist ${dist}'"
archive 'RPMS/noarch/*.rpm'
stash includes: "RPMS/noarch/*.rpm", name: dist
}
node {
stage ("Compile") {
deleteDir()
checkout scm
sh "./make.sh"
stash includes:"build/distributions/*.zip", name: "binaries"
archive 'build/distributions/*.zip'
}
}
node {
stage ("Smoke") {
echo "Smokin' :)"
}
}
stage ("Package") {
node {
buildRpm("el7")
}
node {
buildRpm("el6")
}
node {
buildRpm("fc24")
}
node {
buildDockerContainer()
}
}