-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
96 lines (89 loc) · 2.5 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
def lastStage = ""
def color = '#FF8C00'
def headerFlavour = "WARNING"
def SLACK_CHANNEL = '#amf-jenkins'
def PRODUCT_NAME = "AMF-EXAMPLES"
pipeline {
agent any
options {
timeout(time: 30, unit: 'MINUTES')
ansiColor('xterm')
}
stages {
stage('Test Java && Scala') {
agent {
docker {
image 'gradle:7.4.2-jdk17-alpine'
registryCredentialsId 'dockerhub-pro-credentials'
reuseNode true // Reuses the current node
}
}
steps {
script {
lastStage = env.STAGE_NAME
sh './gradlew test'
}
}
}
stage('Test Node') {
agent {
docker {
image 'node:16-alpine'
registryCredentialsId 'dockerhub-pro-credentials'
reuseNode true // Reuses the current node
}
}
steps {
script {
lastStage = env.STAGE_NAME
sh 'cd AMF5 && npm install && npm run test'
}
}
}
}
post {
unsuccessful {
script {
if (isMaster()) {
sendBuildErrorSlackMessage(lastStage, SLACK_CHANNEL, PRODUCT_NAME)
} else {
echo "Unsuccessful build: skipping slack message notification as branch is not master or develop"
}
}
}
success {
script {
echo "SUCCESSFUL BUILD"
if (lastBuildFailed() && isMaster()) {
slackSend color: '#00FF00', channel: SLACK_CHANNEL, message: ":ok_hand: examples: Everything back to normal :ok_hand:"
}
}
}
}
}
Boolean isMaster() {
env.BRANCH_NAME == "master"
}
Boolean lastBuildFailed() {
def lastBuild = currentBuild.getPreviousBuild()
lastBuild != null && lastBuild.result == "FAILURE"
}
def sendBuildErrorSlackMessage(String lastStage, String slackChannel, String productName) {
def color = '#FF8C00'
def headerFlavour = 'WARNING'
if (isMaster()) {
color = '#FF0000'
headerFlavour = "RED ALERT"
} else if (isDevelop()) {
color = '#FFD700'
}
def message = """:alert: ${headerFlavour}! :alert: Build failed!.
|Branch: ${env.BRANCH_NAME}
|Stage: ${lastStage}
|Product: ${productName}
|Build URL: ${env.BUILD_URL}""".stripMargin().stripIndent()
slackSend color: color, channel: "${slackChannel}", message: message
}
def sendSuccessfulSlackMessage(String slackChannel, String productName) {
slackSend color: '#00FF00', channel: "${slackChannel}", message: ":ok_hand: ${productName} Master Publish OK! :ok_hand:"
}