Skip to content
Snippets Groups Projects
Commit b4930726 authored by Jarrett Lee's avatar Jarrett Lee :speech_balloon:
Browse files

add jenkins for shapefile service

parent dd26b146
No related branches found
No related tags found
No related merge requests found
pipeline {
agent { label 'node2' }
tools { nodejs 'node' }
stages {
stage('notify') {
steps {
script {
slack_send_start()
}
}
}
stage('build') {
steps {
sh '''
make dist-latest
'''
}
}
stage('deploy') {
steps {
upgradeKubernetes('dawn-shapefile', 'dev')
}
}
}
post {
success {
script {
slack_send_success()
}
}
failure {
script {
slack_send_failure()
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment