prototorch/Jenkinsfile

20 lines
307 B
Plaintext
Raw Normal View History

2021-11-03 15:26:32 +00:00
pipeline {
agent none
stages {
stage('Tests') {
agent {
docker {
image 'python:3.9'
2021-11-04 09:42:53 +00:00
args '--user 0:0'
2021-11-03 15:26:32 +00:00
}
}
steps {
2021-11-04 09:53:51 +00:00
sh 'pip install pip --upgrade --progress-bar off'
2021-11-04 09:50:44 +00:00
sh 'pip install .[all] --progress-bar off'
2021-11-03 15:26:32 +00:00
}
}
}
}