Skip to content
Permalink
bda7604b30
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
 
 
Cannot retrieve contributors at this time
31 lines (29 sloc) 611 Bytes
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()
}
}
}
}
}