Skip to content

Commit 2af7a8a

Browse files
committed
PLAT-228: fixed python version
1 parent 9c61f4d commit 2af7a8a

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Diff for: jobs/sharedbuffers-ci.groovy

+12-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,23 @@ pipeline {
1111
PYTHONTEST_IMAGE_VERSION = "3.5.0"
1212
REQUIRES_SDIST = "true"
1313
}
14+
when {
15+
expression{
16+
return hasChangesIn.run("sharedbuffers")
17+
}
18+
}
19+
axes {
20+
axis {
21+
name 'PYTHON_VERSION'
22+
values 'python3.11'
23+
}
24+
}
1425

1526
stages {
1627
stage("Run CI") {
1728
steps {
1829
script {
19-
docker.image("docker.jampp.com/pythontest-image-builder:${PYTHONTEST_IMAGE_VERSION}").inside(
30+
docker.image("docker.jampp.com/libcore:${PYTHONTEST_IMAGE_VERSION}-${PYTHON_VERSION}").inside(
2031
"""\
2132
-v ${WORKSPACE}:/src \
2233
-e REQUIRES_SDIST \

0 commit comments

Comments
 (0)