-
Notifications
You must be signed in to change notification settings - Fork 27
/
Jenkinsfile
159 lines (139 loc) · 5.37 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
AGENT_YAML = '''
apiVersion: v1
kind: Pod
metadata:
namespace: oss-agent
spec:
serviceAccountName: oss-agent
containers:
- name: maven
image: maven:3.8.6-openjdk-8-slim
tty: true
resources:
requests:
memory: "1Gi"
cpu: "500m"
limits:
memory: "1Gi"
cpu: "500m"
command:
- cat
'''
pipeline {
agent {
kubernetes {
defaultContainer 'maven'
yaml AGENT_YAML
}
}
environment {
GPG_SECRET = credentials('presto-release-gpg-secret')
GPG_TRUST = credentials("presto-release-gpg-trust")
GPG_PASSPHRASE = credentials("presto-release-gpg-passphrase")
GITHUB_OSS_TOKEN_ID = 'github-personal-access-token-prestodb'
SONATYPE_NEXUS_CREDS = credentials('presto-sonatype-nexus-creds')
SONATYPE_NEXUS_PASSWORD = "$SONATYPE_NEXUS_CREDS_PSW"
SONATYPE_NEXUS_USERNAME = "$SONATYPE_NEXUS_CREDS_USR"
}
options {
buildDiscarder(logRotator(numToKeepStr: '100'))
disableConcurrentBuilds()
disableResume()
overrideIndexTriggers(false)
timeout(time: 30, unit: 'MINUTES')
timestamps()
}
parameters {
booleanParam(name: 'PERFORM_MAVEN_RELEASE',
defaultValue: false,
description: 'Release and update development version when running in the master branch')
}
stages {
stage('Setup') {
steps {
sh 'apt update && apt install -y bash build-essential git gpg python3 python3-venv'
}
}
stage ('Prepare to Release') {
steps {
script {
env.REPO_CURRENT_VERSION = sh(
script: 'mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -ntp -DforceStdout',
returnStdout: true).trim()
}
echo "current version: ${REPO_CURRENT_VERSION}"
sh '''
git config --global --add safe.directory ${PWD}
git config --global user.email "oss-release-bot@prestodb.io"
git config --global user.name "oss-release-bot"
'''
sh '''#!/bin/bash -ex
export GPG_TTY=$TTY
gpg --batch --import ${GPG_SECRET}
echo ${GPG_TRUST} | gpg --import-ownertrust -
gpg --list-secret-keys
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
printenv | sort
mvn release:prepare -B \
-DautoVersionSubmodules=true \
-DgenerateBackupPoms=false \
-Dgpg.passphrase=${GPG_PASSPHRASE} \
-Poss-release
git branch
git log --pretty="format:%ce: %s" -8
SCM_TAG=$(cat release.properties | grep scm.tag=)
echo ${SCM_TAG#*=} > repo-release-tag.txt
'''
script {
env.REPO_RELEASE_TAG = sh(
script: 'cat repo-release-tag.txt',
returnStdout: true).trim()
}
echo "release tag: ${REPO_RELEASE_TAG}"
}
}
stage ('Release Maven Artifacts') {
when {
allOf {
expression { params.PERFORM_MAVEN_RELEASE }
branch 'master'
}
}
steps {
echo "Update GitHub Repo"
withCredentials([usernamePassword(
credentialsId: "${GITHUB_OSS_TOKEN_ID}",
passwordVariable: 'GIT_PASSWORD',
usernameVariable: 'GIT_USERNAME')]) {
sh '''
git switch -c master
git branch
git --no-pager log --since="60 days ago" --graph --pretty=format:'%C(auto)%h%d%Creset %C(cyan)(%cd)%Creset %C(green)%cn <%ce>%Creset %s'
head -n 18 pom.xml
ORIGIN="https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/prestodb/presto-maven-plugin.git"
git push --follow-tags --set-upstream ${ORIGIN} master
'''
}
echo "Release ${REPO_RELEASE_TAG} maven artifacts"
sh '''#!/bin/bash -ex
export GPG_TTY=$TTY
printenv | sort
git checkout ${REPO_RELEASE_TAG}
git status
git branch
git log -8
head -n 18 pom.xml
mvn -s settings.xml -V -B -U -e -T2C deploy \
-DautoReleaseAfterClose=true \
-Dgpg.passphrase=${GPG_PASSPHRASE} \
-DkeepStagingRepositoryOnCloseRuleFailure=true \
-DkeepStagingRepositoryOnFailure=true \
-DskipTests \
-Poss-release \
-Pdeploy-to-ossrh \
-DstagingProgressTimeoutMinutes=10
'''
}
}
}
}