forked from spacetelescope/drizzlepac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfileRT
57 lines (48 loc) · 2 KB
/
JenkinsfileRT
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Obtain files from source control system.
if (utils.scm_checkout()) return
// Allow modification of the job configuration, affects all relevant
// build configs.
// Pass this object in the argument list to the`run()` function below
// to apply these settings to the job's execution.
jobconfig = new JobConfig()
jobconfig.credentials = [
['drizzlepac_codecov', 'CODECOV_TOKEN']
]
// jobconfig.post_test_summary = true
// Configure artifactory ingest
data_config = new DataConfig()
data_config.server_id = 'bytesalad'
data_config.root = 'tests_output'
data_config.match_prefix = '(.*)_result' // .json is appended automatically
bc1 = new BuildConfig()
bc1.nodetype = 'linux'
bc1.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory']
bc1.name = '3.9'
bc1.conda_packages = ['python=3.9']
bc1.build_cmds = ["pip install numpy astropy codecov pytest-cov ci-watson==0.5",
"pip install --upgrade -e '.[test]'",
"pip freeze"]
bc1.test_cmds = ["pytest --cov=./ --basetemp=tests_output --bigdata",
"codecov"]
bc1.test_configs = [data_config]
bc2 = utils.copy(bc1)
bc2.name = '3.9-dev'
bc2.build_cmds[1] = "pip install -r requirements-dev.txt --upgrade -e '.[test]'"
bc3 = new BuildConfig()
bc3.nodetype = 'linux'
bc3.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory']
bc3.name = '3.10-dev'
bc3.conda_packages = ['python=3.10']
bc3.build_cmds = ["pip install numpy astropy codecov pytest-cov ci-watson==0.5",
"pip install -r requirements-dev.txt --upgrade -e '.[test]'",
"pip freeze"]
bc3.test_cmds = ["pytest --cov=./ --basetemp=tests_output --bigdata",
"codecov"]
bc3.test_configs = [data_config]
bc4 = utils.copy(bc3)
bc4.name = '3.11-dev'
bc4.conda_packages = ['python=3.11']
// Iterate over configurations that define the (distributed) build matrix.
// Spawn a host (or workdir) for each combination and run in parallel.
// Also apply the job configuration defined in `jobconfig` above.
utils.run([bc1, bc3, bc4, jobconfig])