prototorch/Jenkinsfile
2021-11-04 10:50:44 +01:00

20 lines
269 B
Groovy

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