prototorch/Jenkinsfile
2021-11-04 09:55:58 +01:00

18 lines
228 B
Groovy

pipeline {
agent none
stages {
stage('Tests') {
agent {
docker {
image 'python:3.9'
}
}
steps {
sh 'pip install .[all] --user --progress-bar off'
}
}
}
}