1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/Jenkinsfile.groovy

64 lines
1.6 KiB
Groovy
Raw Normal View History

2018-02-20 10:28:55 +00:00
def notifySlack(String buildStatus = 'STARTED') {
// Build status of null means success.
buildStatus = buildStatus ?: 'SUCCESS'
def color
if (buildStatus == 'STARTED') {
color = '#D4DADF'
} else if (buildStatus == 'SUCCESS') {
color = '#BDFFC3'
} else if (buildStatus == 'UNSTABLE') {
color = '#FFFE89'
} else {
color = '#FF9FA1'
}
def msg = "${buildStatus}: `${env.JOB_NAME}` #${env.BUILD_NUMBER}: ${env.GIT_COMMIT}\n${env.BUILD_URL}"
slackSend(color: color, channel: '#status-k8s', message: msg)
}
pipeline {
options {
buildDiscarder(logRotator(daysToKeepStr: '7', numToKeepStr: '10'))
}
agent any
parameters {
string(name: 'TESTNAMESPACE', defaultValue: 'arangodb-operator-tests', description: 'TESTNAMESPACE sets the kubernetes namespace to ru tests in', )
}
stages {
stage('Build') {
steps {
timestamps {
sh "make"
}
}
}
stage('Test') {
2018-02-20 10:29:32 +00:00
steps {
timestamps {
lock("kubernetes-operator-tests") {
withEnv([
2018-02-20 17:16:33 +00:00
"TESTNAMESPACE=${params.TESTNAMESPACE}",
2018-02-20 10:29:32 +00:00
]) {
2018-02-20 17:16:33 +00:00
sh "make"
2018-02-20 10:29:32 +00:00
sh "make run-tests"
2018-02-20 10:28:55 +00:00
}
}
}
}
}
}
post {
failure {
notifySlack('FAILURE')
}
success {
notifySlack('SUCCESS')
}
}
}