ci: add python 3.10 to Jenkinsfile

This commit is contained in:
Alexander Engelsberger 2021-11-04 15:41:38 +01:00 committed by GitHub
parent 8ed385f6d2
commit f4519eb430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
Jenkinsfile vendored
View File

@ -3,6 +3,19 @@ pipeline {
stages {
stage('CPU') {
parallel {
stage('3.10'){
agent {
dockerfile {
filename 'python310.Dockerfile'
dir '.ci'
}
}
steps {
sh 'pip install pip --upgrade --progress-bar off'
sh 'pip install .[all] --progress-bar off'
sh './tests/test_examples.sh examples'
}
}
stage('3.9'){
agent {
dockerfile {