forked from Open-EO/openeo-geopyspark-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile.python311
More file actions
41 lines (38 loc) · 1.37 KB
/
Jenkinsfile.python311
File metadata and controls
41 lines (38 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env groovy
/*
This Jenkinsfile is used to run tests with Python 3.11 using the VITO CI system.
No artifacts are built or published - this is for testing compatibility only.
This Jenkinsfile uses the internal "biggeo/jenkinslib.git" library.
Information about the pythonPipeline method can be found in pythonPipeline.groovy
*/
@Library('lib')_
pythonPipeline {
package_name = 'openeo-geopyspark'
wipeout_workspace = true
hadoop = false
pre_test_script = 'pre_test.sh'
extra_env_variables = [
/* Set pytest `basetemp` inside Jenkins workspace. (Note: this is intentionally Jenkins specific, instead of a global pytest.ini thing.) */
"PYTEST_DEBUG_TEMPROOT=pytest-tmp",
"PYTHON_VERSION=3.11",
"OPENEO_JARS_VARIANT=spark4-scala213",
]
python_version = ["3.11"]
docker_registry = 'vito-docker-private.artifactory.vgt.vito.be'
downstream_job = 'openEO/trigger-python311-build'
wheel_repo = ''
wheel_repo_dev = ''
test_module_name = 'openeogeotrellis'
extras_require = 'dev,spark4'
upload_dev_wheels = false
build_wheel = false
pep440 = true
venv_rpm_deps = ['gcc-c++', 'kstart', 'krb5-devel']
custom_test_image = 'vito-docker.artifactory.vgt.vito.be/almalinux9-spark4-py311-openeo:1.0.9'
extra_container_volumes = [
'/data/MTDA:/data/MTDA:ro'
]
enable_caching = true
enable_uv = true
test_coverage = false
}