forked from nemerosa/versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
133 lines (120 loc) · 3.34 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
String version = ''
String gitCommit = ''
String branchName = ''
String projectName = 'versioning'
boolean pr = false
pipeline {
agent {
docker {
image 'openjdk:8'
label 'docker'
}
}
options {
// General Jenkins job properties
buildDiscarder(logRotator(numToKeepStr: '40'))
// Timestamps
timestamps()
// No durability
durabilityHint('PERFORMANCE_OPTIMIZED')
}
stages {
stage('Setup') {
steps {
script {
branchName = ontrackBranchName(BRANCH_NAME)
echo "Ontrack branch name = ${branchName}"
pr = BRANCH_NAME ==~ 'PR-.*'
}
script {
if (pr) {
echo "No Ontrack setup for PR."
} else {
echo "Ontrack setup for ${branchName}"
ontrackBranchSetup(project: projectName, branch: branchName, script: """
branch.config {
gitBranch '${branchName}', [
buildCommitLink: [
id: 'git-commit-property'
]
]
}
""")
}
}
}
}
stage('Build') {
steps {
sh '''\
#!/bin/bash
set -e
./gradlew \\
clean \\
versionDisplay \\
versionFile \\
build \\
--stacktrace \\
--profile \\
--parallel \\
--console plain
'''
script {
// Reads version information
def props = readProperties(file: 'build/version.properties')
version = props.VERSION_DISPLAY
gitCommit = props.VERSION_COMMIT
currentBuild.description = "Version $version"
}
echo "Version = ${version}"
}
post {
always {
junit "**/build/test-results/**/*.xml"
}
}
}
stage('Release') {
when {
branch 'release/*'
}
environment {
GIT_COMMIT = "${gitCommit}"
VERSION = "${version}"
GITHUB = credentials('GITHUB_NEMEROSA_JENKINS2')
}
steps {
sh '''\
#!/bin/bash
set -e
echo "Creating tag ${VERSION} for ${GIT_COMMIT}"
curl -X POST "https://api.github.com/repos/nemerosa/versioning/releases" \\
--fail \\
--data "{\\"target_commitish\\":\\"${GIT_COMMIT}\\",\\"tag_name\\":\\"${VERSION}\\",\\"name\\":\\"${VERSION}\\"}" \\
--user "${GITHUB}"
'''
}
}
stage('Publication') {
when {
branch 'release/*'
}
environment {
GRADLE_PLUGINS = credentials('GRADLE_PLUGINS')
}
steps {
sh '''\
#!/bin/bash
set -e
./gradlew \\
publishPlugins \\
--stacktrace \\
--profile \\
--console plain \\
-Pgradle.publish.key=${GRADLE_PLUGINS_USR} \\
-Pgradle.publish.secret=${GRADLE_PLUGINS_PSW}
'''
}
}
}
}