-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
117 lines (106 loc) · 3.15 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
def versionTag
pipeline {
environment {
gitBranch = "${env.BRANCH_NAME}"
gitURL = "[email protected]:Memphisdev/memphis-functions.py.git"
repoUrlPrefix = "memphisos"
}
agent {
label 'memphis-jenkins-small-fleet-agent'
}
stages {
stage ('Connect GIT repository') {
steps {
git credentialsId: 'main-github', url: "[email protected]:Memphisdev/memphis-functions.py.git", branch: "${env.gitBranch}"
}
}
stage('Define version - BETA') {
when {branch 'master'}
steps {
script {
versionTag = readFile('./version-beta.conf')
sh """
sed -i -r "s/\\"memphis-functions/\\"memphis-functions-beta/g" setup.py
"""
}
}
}
stage('Define version - LATEST') {
when {branch 'latest'}
steps {
script {
versionTag = readFile('./version.conf')
}
}
}
stage('Install twine') {
steps {
sh """
pip3 install twine
python3 -m pip install urllib3==1.26.6
"""
}
}
stage('Deploy to PyPi') {
steps {
sh """
sed -i -r "s/version=\\"[0-9].[0-9].[0-9]/version=\\"$versionTag/g" setup.py
sed -i -r "s/[0-9].[0-9].[0-9].tar.gz/$versionTag\\.tar.gz/g" setup.py
python3 setup.py sdist
"""
withCredentials([usernamePassword(credentialsId: 'python_sdk', usernameVariable: 'USR', passwordVariable: 'PSW')]) {
sh """
~/.local/bin/twine upload -u $USR -p $PSW dist/*
"""
}
}
}
stage('Checkout to version branch') {
when {branch 'latest'}
steps {
sh """
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo -y
sudo dnf install gh -y
"""
withCredentials([sshUserPrivateKey(keyFileVariable:'check',credentialsId: 'main-github')]) {
sh """
GIT_SSH_COMMAND='ssh -i $check' git checkout -b $versionTag
GIT_SSH_COMMAND='ssh -i $check' git push --set-upstream origin $versionTag
"""
}
withCredentials([string(credentialsId: 'gh_token', variable: 'GH_TOKEN')]) {
sh """
gh release create $versionTag --generate-notes
"""
}
}
}
}
post {
always {
cleanWs()
}
success {
notifySuccessful()
}
failure {
notifyFailed()
}
}
}
def notifySuccessful() {
emailext (
subject: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
def notifyFailed() {
emailext (
subject: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
body: """<p>FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>""",
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}