This repository was archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
76 lines (67 loc) · 1.39 KB
/
.gitlab-ci.yml
File metadata and controls
76 lines (67 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
image: python
before_script:
- pip install -r requirements.txt
- '[ -n "$SPECIFIC_PIP_PACKAGES" ] && [[ "$SPECIFIC_PIP_PACKAGES" =~ ^[^\;\&\|]*$ ]] && pip install $SPECIFIC_PIP_PACKAGES'
- export PYTHONPATH=$PWD
- cd pipeline
stages:
- get_input_data
- configure_datasets
- process_trees
- make_plots
- deploy
get_input_data:
stage: get_input_data
script:
- make input_files
artifacts:
paths:
- pipeline
expire_in: 2 days
fast_curator_py2: &FAST_CURATOR
image: python:2.7
stage: configure_datasets
script:
- make curator
dependencies:
- get_input_data
artifacts:
paths:
- pipeline
expire_in: 2 days
fast_carpenter_py2: &FAST_CARPENTER
image: python:2.7
stage: process_trees
script:
- make carpenter
dependencies:
- fast_curator_py2
artifacts:
paths:
- pipeline
expire_in: 2 days
fast_plotter_py2: &FAST_PLOTTER
image: python:2.7
stage: make_plots
script: make plotter
dependencies:
- fast_carpenter_py2
artifacts:
paths:
- pipeline
expire_in: 2 days
fast_curator_py3:
<<: *FAST_CURATOR
image: python:3.7
allow_failure: True
fast_carpenter_py3:
<<: *FAST_CARPENTER
image: python:3.7
dependencies:
- fast_curator_py3
allow_failure: True
fast_plotter_py3:
<<: *FAST_PLOTTER
image: python:3.7
dependencies:
- fast_carpenter_py3