simple-python-pyinstaller-app/Jenkinsfile
2020-02-14 04:34:25 -05:00

29 lines
493 B
Groovy

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