-
Notifications
You must be signed in to change notification settings - Fork 16
/
Jenkinsfile
64 lines (56 loc) · 2.21 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
def gitBranch = env.BRANCH_NAME
def gitURL = "[email protected]:Memphisdev/memphis.go.git"
def repoUrlPrefix = "memphisos"
node ("memphis-jenkins-small-fleet-agent") {
git credentialsId: 'main-github', url: gitURL, branch: gitBranch
if (env.BRANCH_NAME ==~ /(master)/) {
versionTag = readFile "./version-beta.conf"
}
else {
versionTag = readFile "./version.conf"
}
try{
stage ('Install GoLang') {
sh 'wget -q https://go.dev/dl/go1.20.12.linux-amd64.tar.gz'
sh 'sudo tar -C /usr/local -xzf go1.20.12.linux-amd64.tar.gz'
}
stage('Deploy GO SDK') {
sh "git tag v$versionTag"
withCredentials([sshUserPrivateKey(keyFileVariable:'check',credentialsId: 'main-github')]) {
sh "GIT_SSH_COMMAND='ssh -i $check' git push origin v$versionTag"
}
sh "GOPROXY=proxy.golang.org /usr/local/go/bin/go list -m github.com/memphisdev/memphis.go@v$versionTag"
}
if (env.BRANCH_NAME ==~ /(latest)/) {
stage('Checkout to version branch'){
withCredentials([sshUserPrivateKey(keyFileVariable:'check',credentialsId: 'main-github')]) {
sh "git reset --hard origin/latest"
sh "GIT_SSH_COMMAND='ssh -i $check' git checkout -b $versionTag"
sh "GIT_SSH_COMMAND='ssh -i $check' git push --set-upstream origin $versionTag"
}
}
}
notifySuccessful()
} catch (e) {
currentBuild.result = "FAILED"
cleanWs()
notifyFailed()
throw e
}
}
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']]
)
}