-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
89 lines (65 loc) · 5.11 KB
/
Jenkinsfile
File metadata and controls
89 lines (65 loc) · 5.11 KB
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
#!groovy
properties(
[
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', 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-web.zip"
}
def buildDockerContainer() {
prepareEnv()
unstash 'el7scl'
sh 'mv RPMS/noarch/*.rpm RPMS/noarch/upsilon-web.rpm'
sh 'unzip -jo SOURCES/upsilon-web.zip "upsilon-web-*/var/pkg/Dockerfile" "upsilon-web-*/.buildid" -d . '
tag = sh script: 'buildid -pk tag', returnStdout: true
println "tag: ${tag}"
sh "docker build -t 'upsilonproject/web:${tag}' ."
sh "docker tag 'upsilonproject/web:${tag}' 'upsilonproject/web:latest' "
sh "docker save upsilonproject/web:${tag} > upsilon-web-docker-${tag}.tgz"
archive "upsilon-web-docker-${tag}.tgz"
}
def buildRpm(dist) {
prepareEnv()
sh 'unzip -jo SOURCES/upsilon-web.zip "upsilon-web-*/setup/upsilon-web.spec" "upsilon-web-*/.buildid.rpmmacro" -d SPECS/'
sh "find ${env.WORKSPACE}"
sh "rpmbuild -ba SPECS/upsilon-web.spec --define '_topdir ${env.WORKSPACE}' --define 'dist ${dist}'"
archive 'RPMS/noarch/*.rpm'
stash includes: "RPMS/noarch/*.rpm", name: dist
}
node {
stage "Prep"
deleteDir()
def gradle = tool 'gradle'
checkout scm
stage "Compile"
sh "${gradle}/bin/gradle setupLibraries phpUnit distZip"
archive 'build/distributions/*.zip'
stash includes:"build/distributions/*.zip", name: "binaries"
}
node {
stage "Smoke"
echo "Smokin' :)"
}
stage ("Package") {
node {
buildRpm("el6")
}
node {
buildRpm("el7")
}
node {
buildRpm("el7scl")
buildDockerContainer()
}
node {
buildRpm("fc24")
}
}