Skip to content
Snippets Groups Projects
Commit 829a126d authored by Tucker Gary Siegel's avatar Tucker Gary Siegel
Browse files

add gdd java

parent 0e78fb3e
No related branches found
No related tags found
No related merge requests found
pipeline {
agent { label 'node2' }
tools {
jdk 'JAVA17'
}
environment {
GITLAB_DEPLOY_TOKEN = credentials("GITLAB_JAVA_DEPLOY_TOKEN")
}
stages {
stage('notify') {
steps {
script {
slack_send_start()
}
}
}
stage('deploy') {
steps {
sh '''
make dist-latest
'''
}
}
}
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