forked from Open-EO/openeo-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
27 lines (24 loc) · 837 Bytes
/
Jenkinsfile
File metadata and controls
27 lines (24 loc) · 837 Bytes
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
#!/usr/bin/env groovy
/*
This Jenkinsfile is used to provide snapshot builds using the VITO CI system.
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_driver'
wipeout_workspace = true
python_version = ["3.8"]
downstream_job = 'openEO/openeo-integrationtests'
wheel_repo = 'python-openeo'
extras_require = 'dev'
upload_dev_wheels = false
pep440 = true
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",
]
pre_test_script = 'pre_test.sh'
enable_uv = true
enable_caching = true
}