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 {
|
2018-03-01 10:15:18 +00:00
|
|
|
booleanParam(name: 'LONG', defaultValue: false, description: 'Execute long running tests')
|
2018-02-26 09:59:05 +00:00
|
|
|
string(name: 'KUBECONFIG', defaultValue: '/home/jenkins/.kube/scw-183a3b', description: 'KUBECONFIG controls which k8s cluster is used', )
|
2018-02-22 08:12:36 +00:00
|
|
|
string(name: 'TESTNAMESPACE', defaultValue: 'jenkins', description: 'TESTNAMESPACE sets the kubernetes namespace to ru tests in (this must be short!!)', )
|
2018-02-27 08:30:00 +00:00
|
|
|
string(name: 'ENTERPRISEIMAGE', defaultValue: '', description: 'ENTERPRISEIMAGE sets the docker image used for enterprise tests)', )
|
2018-02-20 10:28:55 +00:00
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
|
|
|
timestamps {
|
2018-02-20 17:53:33 +00:00
|
|
|
withEnv([
|
2018-02-22 10:19:28 +00:00
|
|
|
"IMAGETAG=${env.GIT_COMMIT}",
|
2018-02-20 17:53:33 +00:00
|
|
|
]) {
|
|
|
|
sh "make"
|
2018-02-27 14:32:09 +00:00
|
|
|
sh "make run-unit-tests"
|
2018-02-20 17:53:33 +00:00
|
|
|
}
|
2018-02-20 10:28:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Test') {
|
2018-02-20 10:29:32 +00:00
|
|
|
steps {
|
|
|
|
timestamps {
|
2018-02-22 10:19:28 +00:00
|
|
|
lock("${params.TESTNAMESPACE}-${env.GIT_COMMIT}") {
|
2018-02-27 09:45:57 +00:00
|
|
|
withCredentials([string(credentialsId: 'ENTERPRISEIMAGE', variable: 'DEFAULTENTERPRISEIMAGE')]) {
|
|
|
|
withEnv([
|
2018-03-01 10:15:18 +00:00
|
|
|
"ENTERPRISEIMAGE=${params.ENTERPRISEIMAGE}",
|
2018-02-27 09:45:57 +00:00
|
|
|
"IMAGETAG=${env.GIT_COMMIT}",
|
2018-03-01 10:15:18 +00:00
|
|
|
"KUBECONFIG=${params.KUBECONFIG}",
|
|
|
|
"LONG=${params.LONG ? 1 : 0}",
|
2018-02-27 09:45:57 +00:00
|
|
|
"PUSHIMAGES=1",
|
2018-03-01 10:15:18 +00:00
|
|
|
"TESTNAMESPACE=${params.TESTNAMESPACE}-${env.GIT_COMMIT}",
|
2018-02-27 09:45:57 +00:00
|
|
|
]) {
|
|
|
|
sh "make run-tests"
|
|
|
|
}
|
2018-02-20 10:28:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
2018-02-27 10:31:27 +00:00
|
|
|
always {
|
|
|
|
timestamps {
|
|
|
|
withEnv([
|
|
|
|
"KUBECONFIG=${params.KUBECONFIG}",
|
|
|
|
"TESTNAMESPACE=${params.TESTNAMESPACE}-${env.GIT_COMMIT}",
|
|
|
|
]) {
|
|
|
|
sh "make cleanup-tests"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-20 10:28:55 +00:00
|
|
|
failure {
|
|
|
|
notifySlack('FAILURE')
|
|
|
|
}
|
|
|
|
|
|
|
|
success {
|
|
|
|
notifySlack('SUCCESS')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|