ci: add python 3.10 to Jenkinsfile
This commit is contained in:
parent
8ed385f6d2
commit
f4519eb430
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user