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 {
|
stages {
|
||||||
stage('CPU') {
|
stage('CPU') {
|
||||||
parallel {
|
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'){
|
stage('3.9'){
|
||||||
agent {
|
agent {
|
||||||
dockerfile {
|
dockerfile {
|
||||||
|
Loading…
Reference in New Issue
Block a user