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
sh "conan create -s:h build_type=Debug ${CONAN_FLAGS} ."
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.*"
46
+
script {
47
+
slackSend color: '#E67E22', channel: "${SLACK_THREAD}", 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.*"
48
+
}
44
49
sh "conan create -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} ."
45
50
}
46
51
}
@@ -52,17 +57,19 @@ pipeline {
52
57
steps {
53
58
sh "conan remote login -p ${ARTIFACTORY_PASS} ebay-local _service_sds"
54
59
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\nPackage `${PROJECT}@${VER}` is live and ready to pull downstream"
60
+
script {
61
+
slackSend color: '#8A6BBF', channel: "${SLACK_THREAD}", message: "📦 (`${BRANCH_NAME}`) — everyone survived long enough to land in Artifactory\nPackage `${PROJECT}@${VER}` is live and ready to pull downstream"
62
+
}
56
63
}
57
64
}
58
65
}
59
66
60
67
post {
61
68
failure {
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🪦"
69
+
slackSend color: '#E43237', channel: "${SLACK_THREAD}", replyBroadcast: true, 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
70
}
64
71
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🍾 Mission succssful!"
72
+
slackSend color: '#85B717', channel: "${SLACK_THREAD}", replyBroadcast: true, 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 successful!"
0 commit comments