-
Notifications
You must be signed in to change notification settings - Fork 1
237 lines (233 loc) · 8.88 KB
/
build.yml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
name: 🏗️ Build a Dataset
run-name: "🏗️ Build a Dataset: ${{ inputs.dataset_name }}"
on:
workflow_dispatch:
inputs:
dataset_name:
description: "Which dataset to build"
type: choice
required: true
options:
- template
- cbbr
- checkbook
- colp
- cpdb
- developments
- facilities
- factfinder
- green_fast_track
- knownprojects
- pluto
- ztl
- all
recipe_file:
description: "Recipe filename to use"
type: string
options:
- recipe
- recipe-minor
required: true
default: recipe
version:
description: "Version of dataset being built (overrides version defined in recipe)"
type: string
required: false
dev_image:
description: "Use dev image specific to this branch (if exists)"
type: boolean
required: true
default: false
logging_level:
description: "Logging level"
type: choice
required: true
default: INFO
options:
- WARNING
- INFO
- DEBUG
build_name:
description: "Build name (defaults to branch name)"
type: string
required: false
build_note:
description: "An optional note about this build"
type: string
required: false
dev_bucket:
description: "dev bucket to use in place of recipes/publishing. If name of bucket is 'de-dev-a' simply put 'a'"
type: string
required: false
workflow_call:
inputs:
dataset_name:
type: string
required: true
build_note:
type: string
required: false
recipe_file:
type: string
required: true
dev_image:
type: string
default: false
required: false
build_name:
type: string
required: false
dev_bucket:
type: string
required: false
env:
tag: ${{ (inputs.dev_image == 'true' || inputs.dev_image == true) && format('dev-{0}', github.head_ref || github.ref_name) || 'latest' }}
build_name: ${{ inputs.build_name || github.head_ref || github.ref_name }}
version: ${{ github.event.inputs.version && format('--version {0}', github.event.inputs.version) || '' }}
jobs:
health_check:
name: Health Check
runs-on: ubuntu-latest
outputs:
plan_command: recipe --recipe-path ./${{ inputs.recipe_file }}.yml ${{ env.version }}
tag: ${{ env.tag }}
build_name: ${{ env.build_name }}
steps:
- name: Check inputs
run: |
echo "running with image tag ${{ (inputs.dev_image == 'true'|| inputs.dev_image == true) && format('dev-{0}', github.head_ref || github.ref_name) || 'latest' }}"
echo "Workflow inputs are:"
echo "${{ toJSON(github.event.inputs) }}"
template:
needs: health_check
if: inputs.dataset_name == 'template'
uses: ./.github/workflows/template_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
logging_level: ${{ inputs.logging_level }}
build_note: ${{ inputs.build_note }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
cbbr:
needs: health_check
if: inputs.dataset_name == 'cbbr' || inputs.dataset_name == 'all'
uses: ./.github/workflows/cbbr_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
logging_level: ${{ inputs.logging_level }}
build_note: ${{ inputs.build_note }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
checkbook:
needs: health_check
if: inputs.dataset_name == 'checkbook' || inputs.dataset_name == 'all'
uses: ./.github/workflows/checkbook_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
colp:
needs: health_check
if: inputs.dataset_name == 'colp' || inputs.dataset_name == 'all'
uses: ./.github/workflows/colp_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
cpdb:
needs: health_check
if: inputs.dataset_name == 'cpdb' || inputs.dataset_name == 'all'
uses: ./.github/workflows/cpdb_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
developments:
needs: health_check
if: inputs.dataset_name == 'developments' || inputs.dataset_name == 'all'
uses: ./.github/workflows/developments_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
facilities:
needs: health_check
if: inputs.dataset_name == 'facilities' || inputs.dataset_name == 'all'
uses: ./.github/workflows/facilities_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
factfinder:
needs: health_check
if: inputs.dataset_name == 'factfinder'
uses: ./.github/workflows/factfinder_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
green_fast_track:
needs: health_check
if: inputs.dataset_name == 'green_fast_track' || inputs.dataset_name == 'all'
uses: ./.github/workflows/green_fast_track_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
recipe_file: ${{ inputs.recipe_file }}
build_name: ${{ needs.health_check.outputs.build_name }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
knownprojects:
needs: health_check
if: inputs.dataset_name == 'knownprojects' || inputs.dataset_name == 'all'
uses: ./.github/workflows/knownprojects_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
pluto:
needs: health_check
if: inputs.dataset_name == 'pluto' || inputs.dataset_name == 'all'
uses: ./.github/workflows/pluto_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}
ztl:
needs: health_check
if: inputs.dataset_name == 'ztl' || inputs.dataset_name == 'all'
uses: ./.github/workflows/zoningtaxlots_build.yml
secrets: inherit
with:
image_tag: ${{ needs.health_check.outputs.tag }}
build_name: ${{ needs.health_check.outputs.build_name }}
recipe_file: ${{ inputs.recipe_file }}
plan_command: ${{ needs.health_check.outputs.plan_command }}
dev_bucket: ${{ inputs.dev_bucket && format('de-dev-{0}', inputs.dev_bucket) || '' }}