Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Jim Van Fleet Truly dying
Latest commit bda7604 May 4, 2017 History
0 contributors

Users who have contributed to this file

pipeline {
agent { label 'docker' }
stages {
stage('Build') {
steps {
echo 'make'
}
}
stage('Test'){
steps {
echo 'make check'
echo 'reports/**/*.xml'
}
}
stage('Deploy') {
steps {
echo 'make publish'
}
}
stage('Test lib'){
steps {
script {
def build = buildDocker(env)
echo build.envDebug()
}
}
}
}
}