prototorch/Jenkinsfile

19 lines
248 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'
}
}
steps {
2021-11-04 09:41:28 +00:00
sh 'whoami'
sh 'pip install .[all] --user --progress-bar off'
2021-11-03 15:26:32 +00:00
}
}
}
}