ci: add Python 3.6 and 3.7 to Jenkinsfile

This commit is contained in:
Alexander Engelsberger 2021-11-04 14:06:47 +01:00 committed by GitHub
parent 26cc0690ef
commit c88bf9c6b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
Jenkinsfile vendored
View File

@ -29,6 +29,32 @@ pipeline {
sh './tests/test_examples.sh examples'
}
}
stage('3.7'){
agent {
dockerfile {
filename 'python37.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.6'){
agent {
dockerfile {
filename 'python36.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'
}
}
}
}
}