prototorch_models/Jenkinsfile

36 lines
827 B
Plaintext
Raw Normal View History

2021-11-04 10:04:19 +00:00
pipeline {
agent none
stages {
2021-11-04 10:17:33 +00:00
stage('CPU') {
parallel {
stage('3.9'){
agent {
2021-11-04 10:58:21 +00:00
dockerfile {
filename 'python39.Dockerfile'
dir '.ci'
2021-11-04 10:17:33 +00:00
}
}
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 {
2021-11-04 10:58:21 +00:00
dockerfile {
filename 'python38.Dockerfile'
dir '.ci'
2021-11-04 10:17:33 +00:00
}
}
steps {
sh 'pip install pip --upgrade --progress-bar off'
sh 'pip install .[all] --progress-bar off'
sh './tests/test_examples.sh examples'
}
2021-11-04 10:04:19 +00:00
}
}
}
}
}