prototorch/Jenkinsfile
Alexander Engelsberger d57648f9d6
ci: container debugging
2021-11-04 10:41:28 +01:00

19 lines
248 B
Groovy

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