-
Tucker Gary Siegel authoredTucker Gary Siegel authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
dev 609 B
pipeline {
agent { label 'node2' }
stages {
stage('notify') {
steps {
script {
slack_send_start()
}
}
}
stage('deploy') {
steps {
sh '''
make dist
'''
}
}
}
post {
success {
script {
slack_send_success()
}
}
failure {
script {
slack_send_failure()
}
}
}
}