prototorch_models/Jenkinsfile
Alexander Engelsberger 2da3a8f226
ci: two python versions
2021-11-04 11:17:33 +01:00

36 lines
811 B
Groovy

pipeline {
agent none
stages {
stage('CPU') {
parallel {
stage('3.9'){
agent {
docker {
image 'python:3.9'
args '--user 0:0'
}
}
steps {
sh 'pip install pip --upgrade --progress-bar off'
sh 'pip install .[all] --progress-bar off'
sh './tests/test_examples.sh examples'
}
}
stage('3.8'){
agent {
docker {
image 'python:3.8'
args '--user 0:0'
}
}
steps {
sh 'pip install pip --upgrade --progress-bar off'
sh 'pip install .[all] --progress-bar off'
sh './tests/test_examples.sh examples'
}
}
}
}
}
}