Skip to content

Commit bb088eb

Browse files
committed
Revert "Reduce slack chattines"
This reverts commit f7d3926.
1 parent f7d3926 commit bb088eb

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.jenkins/Jenkinsfile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ pipeline {
2323
script {
2424
CONAN_CHANNEL = sh(script: "echo ${BRANCH_NAME} | sed -E 's,(\\w+-?\\d*)/.*,\\1,' | sed -E 's,-,_,' | tr -d '\n'", returnStdout: true)
2525
CONAN_FLAGS = "${CONAN_FLAGS} --user oss --channel ${CONAN_CHANNEL}"
26-
SLACK_THREAD = 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>").threadId
2726
}
2827
}
2928
}
3029

31-
// Tests go here for other repos not gated by GitHub Workflow
3230
stage("Pre-flight") {
3331
steps {
3432
script {
33+
SLACK_THREAD = 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>").threadId
3534
sh "conan graph info -s:h build_type=Debug ${CONAN_FLAGS} ."
3635
sh "conan graph info -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} ."
3736
}
@@ -40,7 +39,13 @@ pipeline {
4039

4140
stage("Ignition") {
4241
steps {
42+
script {
43+
slackSend color: '#9B59B6', channel: "${SLACK_THREAD}", message: "⛽ *${PROJECT}* `${BRANCH_NAME}` build #${BUILD_NUMBER} \nAll systems Go...going somewhere anyways...\nLet's light this 🕯️... 3... 2... 1...!"
44+
}
4345
sh "conan create -s:h build_type=Debug ${CONAN_FLAGS} ."
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+
}
4449
sh "conan create -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} ."
4550
}
4651
}
@@ -53,7 +58,7 @@ pipeline {
5358
sh "conan remote login -p ${ARTIFACTORY_PASS} ebay-local _service_sds"
5459
sh "conan upload '*:*' -r ebay-local --confirm"
5560
script {
56-
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"
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"
5762
}
5863
}
5964
}

0 commit comments

Comments
 (0)