Skip to content

Commit

Permalink
Update slack channel for Jenkins builds
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
jlowe committed Sep 9, 2020
1 parent c658fcc commit caf0292
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.301.integration
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ pipeline {
def status = "failed"
if (currentBuild.currentResult == "SUCCESS") {
status = "success"
slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
}
else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
echo 'Pipeline finished!'
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.302.integration
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ pipeline {
def status = "failed"
if (currentBuild.currentResult == "SUCCESS") {
status = "success"
slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
}
else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
echo 'Pipeline finished!'
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.310.integration
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ pipeline {
def status = "failed"
if (currentBuild.currentResult == "SUCCESS") {
status = "success"
slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
}
else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
echo 'Pipeline finished!'
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.databricksnightly
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ pipeline {
script {
sh "python3.6 ./jenkins/databricks/shutdown.py -c $CLUSTER_ID -t $DATABRICKS_TOKEN || true"
if (currentBuild.currentResult == "SUCCESS") {
slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
} else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.integration
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ pipeline {
def status = "failed"
if (currentBuild.currentResult == "SUCCESS") {
status = "success"
slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
}
else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
echo 'Pipeline finished!'
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Jenkinsfile.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ pipeline {
propagate: false,
parameters: [string(name: 'REF', value: 'branch-0.2')])

slack("#rapidsai-spark-cicd", "Success", color: "#33CC33")
slack("#swrapids-spark-cicd", "Success", color: "#33CC33")
} else {
slack("#rapidsai-spark-cicd", "Failed", color: "#FF0000")
slack("#swrapids-spark-cicd", "Failed", color: "#FF0000")
}
}
}
Expand Down

0 comments on commit caf0292

Please sign in to comment.