etendo-ui-library 1.0.72 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pipelines/Jenkinsfile +4 -3
package/package.json
CHANGED
package/pipelines/Jenkinsfile
CHANGED
|
@@ -6,6 +6,7 @@ pipeline {
|
|
|
6
6
|
|
|
7
7
|
environment {
|
|
8
8
|
NPM_TOKEN = credentials('npmjs-access-token')
|
|
9
|
+
EMAIL_ADDRESS = credentials('email_builds')
|
|
9
10
|
URL_REPO = 'https://bitbucket.org/koodu_software/etendo_ui_library'
|
|
10
11
|
COMMIT_AUTHOR_NAME = sh(returnStdout: true, script: "git log -1 --pretty=format:'%an'").trim()
|
|
11
12
|
COMMIT_AUTHOR_EMAIL = sh(returnStdout: true, script: "git log -1 --pretty=format:'%ae'").trim()
|
|
@@ -130,7 +131,7 @@ pipeline {
|
|
|
130
131
|
cleanWs deleteDirs: true
|
|
131
132
|
}
|
|
132
133
|
fixed {
|
|
133
|
-
mail to:
|
|
134
|
+
mail to: EMAIL_ADDRESS,
|
|
134
135
|
subject: "✅ FIXED - ${currentBuild.fullDisplayName}",
|
|
135
136
|
body: """
|
|
136
137
|
${new Date()}
|
|
@@ -154,7 +155,7 @@ __________________________________________________________
|
|
|
154
155
|
}
|
|
155
156
|
}
|
|
156
157
|
cleanWs deleteDirs: true
|
|
157
|
-
mail to:
|
|
158
|
+
mail to: EMAIL_ADDRESS,
|
|
158
159
|
subject: "🚨 TESTS FAILED - ${currentBuild.fullDisplayName}",
|
|
159
160
|
body: """
|
|
160
161
|
${new Date()}
|
|
@@ -178,7 +179,7 @@ __________________________________________________________
|
|
|
178
179
|
}
|
|
179
180
|
}
|
|
180
181
|
cleanWs deleteDirs: true
|
|
181
|
-
mail to:
|
|
182
|
+
mail to: EMAIL_ADDRESS,
|
|
182
183
|
subject: "🚫 ERROR - ${currentBuild.fullDisplayName}",
|
|
183
184
|
body: """
|
|
184
185
|
${new Date()}
|