You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .jenkins/Jenkinsfile
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ pipeline {
29
29
stage("Pre-flight") {
30
30
steps {
31
31
script {
32
-
slackSend color: '#0063D1', channel: '#sds-ci', message: "📋 *${PROJECT}* `${VER}` on `${BRANCH_NAME}` — build #${BUILD_NUMBER} has entered the system check\nCountdown initiated. Manage your expectations.\n<${BUILD_URL}|Watch nervously>"
32
+
slackSend color: '#0063D1', channel: '#sds-ci', message: "🚀 *${PROJECT}* `${VER}` on `${BRANCH_NAME}` — build #${BUILD_NUMBER} has begun systems check\nCountdown initiated. Manage your expectations.\n<${BUILD_URL}|Watch nervously>"
33
33
sh "conan graph info -s:h build_type=Debug ${CONAN_FLAGS} ."
34
34
sh "conan graph info -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} ."
35
35
}
@@ -38,9 +38,9 @@ pipeline {
38
38
39
39
stage("Ignition") {
40
40
steps {
41
-
slackSend color: '#9B59B6', channel: '#sds-ci', message: "⛽ *${PROJECT}* `${VER}` build #${BUILD_NUMBER}\nAll systems Go...going somewhere is right...\nLet's light this 🕯️... 3... 2... 1...!"
sh "conan create -s:h build_type=Debug ${CONAN_FLAGS} ."
43
-
slackSend color: '#E67E22', channel: '#sds-ci', message: "🧑🚀 *Debug: green.* One more build between us and home.\nI've been in here long enough to start naming the compiler warnings. Don't ask.\nRelWithDebInfo... *please don't fail me now.*"
43
+
slackSend color: '#E67E22', channel: '#sds-ci', message: "🧑🚀 *${PROJECT}* `${BRANCH_NAME}`\n*Debug: green.* One more build between us and home.\nI've been in here long enough to start naming the compiler warnings. Don't ask.\nRelWithDebInfo... *please don't fail me now.*"
44
44
sh "conan create -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} ."
45
45
}
46
46
}
@@ -52,7 +52,7 @@ pipeline {
52
52
steps {
53
53
sh "conan remote login -p ${ARTIFACTORY_PASS} ebay-local _service_sds"
54
54
sh "conan upload '*:*' -r ebay-local --confirm"
55
-
slackSend color: '#8A6BBF', channel: '#sds-ci', message: "📦 (`${BRANCH_NAME}`) — everyone survived long enough to land in Artifactory\nBuild #${PROJECT}@${VER} is live and ready to pull downstream"
55
+
slackSend color: '#8A6BBF', channel: '#sds-ci', message: "📦 (`${BRANCH_NAME}`) — everyone survived long enough to land in Artifactory\nPackage `${PROJECT}@${VER}` is live and ready to pull downstream"
56
56
}
57
57
}
58
58
}
@@ -62,7 +62,7 @@ pipeline {
62
62
slackSend color: '#E43237', channel: '#sds-ci', message: "💀 *${PROJECT}* `${VER}` (`${BRANCH_NAME}`) build #${BUILD_NUMBER} didn't make it\nHeld on for _${currentBuild.durationString}_ before calling it quits\n<${BUILD_URL}|Post-mortem>\n🪦"
63
63
}
64
64
success {
65
-
slackSend color: '#85B717', channel: '#sds-ci', message: "✅ *${PROJECT}* `${VER}` (`${BRANCH_NAME}`) build #${BUILD_NUMBER} — it actually worked\nDebug + RelWithDebInfo both green in _${currentBuild.durationString}_\n<${BUILD_URL}|Full report>\n👨🚀 Everyone survived!"
65
+
slackSend color: '#85B717', channel: '#sds-ci', message: "✅ *${PROJECT}* `${VER}` (`${BRANCH_NAME}`) build #${BUILD_NUMBER} — it actually worked\nDebug + RelWithDebInfo both green in _${currentBuild.durationString}_\n<${BUILD_URL}|Full report>\n🍾 Mission succssful!"
0 commit comments