ci: add Python 3.6 and 3.7 to Jenkinsfile
This commit is contained in:
parent
26cc0690ef
commit
c88bf9c6b7
26
Jenkinsfile
vendored
26
Jenkinsfile
vendored
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user