simple-python-pyinstaller-app/Jenkinsfile
2020-02-14 04:32:40 -05:00

30 lines
549 B
Groovy

pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image ''
}
}
steps {
sh ''
}
}
stage('Test') {
agent {
docker {
image ''
}
}
steps {
sh ''
}
post {
always {
junit ''
}
}
}
}
}