3
3
percy-finalize :
4
4
docker :
5
5
- image : percyio/agent
6
+ auth :
7
+ username : dashautomation
8
+ password : $DASH_PAT_DOCKERHUB
6
9
steps :
7
10
- run : percy finalize --all
8
11
9
12
lint-unit-37 : &lint-unit
10
13
working_directory : ~/project
11
14
docker :
12
15
- image : circleci/python:3.7.6-stretch-node-browsers
16
+ auth :
17
+ username : dashautomation
18
+ password : $DASH_PAT_DOCKERHUB
13
19
environment :
14
20
PYTHON_VERSION : py37
15
21
steps :
@@ -44,20 +50,29 @@ jobs:
44
50
<< : *lint-unit
45
51
docker :
46
52
- image : circleci/python:3.6.9-stretch-node-browsers
53
+ auth :
54
+ username : dashautomation
55
+ password : $DASH_PAT_DOCKERHUB
47
56
environment :
48
57
PYTHON_VERSION : py36
49
58
50
59
lint-unit-27 :
51
60
<< : *lint-unit
52
61
docker :
53
62
- image : circleci/python:2.7-stretch-node-browsers
63
+ auth :
64
+ username : dashautomation
65
+ password : $DASH_PAT_DOCKERHUB
54
66
environment :
55
67
PYTHON_VERSION : py27
56
68
57
69
build-dash-37 : &build-dash
58
70
working_directory : ~/project
59
71
docker :
60
72
- image : circleci/python:3.7.6-stretch-node-browsers
73
+ auth :
74
+ username : dashautomation
75
+ password : $DASH_PAT_DOCKERHUB
61
76
environment :
62
77
PYTHON_VERSION : py37
63
78
steps :
@@ -99,20 +114,29 @@ jobs:
99
114
<< : *build-dash
100
115
docker :
101
116
- image : circleci/python:3.6.9-stretch-node-browsers
117
+ auth :
118
+ username : dashautomation
119
+ password : $DASH_PAT_DOCKERHUB
102
120
environment :
103
121
PYTHON_VERSION : py36
104
122
105
123
build-dash-27 :
106
124
<< : *build-dash
107
125
docker :
108
126
- image : circleci/python:2.7-stretch-node-browsers
127
+ auth :
128
+ username : dashautomation
129
+ password : $DASH_PAT_DOCKERHUB
109
130
environment :
110
131
PYTHON_VERSION : py27
111
132
112
133
test-37 : &test
113
134
working_directory : ~/project
114
135
docker :
115
136
- image : circleci/python:3.7.6-stretch-node-browsers
137
+ auth :
138
+ username : dashautomation
139
+ password : $DASH_PAT_DOCKERHUB
116
140
environment :
117
141
PYTHON_VERSION : py37
118
142
PERCY_PARALLEL_TOTAL : -1
@@ -145,6 +169,9 @@ jobs:
145
169
<< : *test
146
170
docker :
147
171
- image : circleci/python:3.6.9-stretch-node-browsers
172
+ auth :
173
+ username : dashautomation
174
+ password : $DASH_PAT_DOCKERHUB
148
175
environment :
149
176
PYTHON_VERSION : py36
150
177
PERCY_ENABLE : 0
@@ -153,6 +180,9 @@ jobs:
153
180
<< : *test
154
181
docker :
155
182
- image : circleci/python:2.7-stretch-node-browsers
183
+ auth :
184
+ username : dashautomation
185
+ password : $DASH_PAT_DOCKERHUB
156
186
environment :
157
187
PYTHON_VERSION : py27
158
188
PERCY_ENABLE : 0
@@ -161,6 +191,9 @@ jobs:
161
191
working_directory : ~/project
162
192
docker :
163
193
- image : circleci/python:3.7.6-stretch-node-browsers
194
+ auth :
195
+ username : dashautomation
196
+ password : $DASH_PAT_DOCKERHUB
164
197
environment :
165
198
PYTHON_VERSION : py37
166
199
PERCY_PARALLEL_TOTAL : -1
@@ -195,13 +228,19 @@ jobs:
195
228
<< : *test-legacy
196
229
docker :
197
230
- image : circleci/python:3.6.9-stretch-node-browsers
231
+ auth :
232
+ username : dashautomation
233
+ password : $DASH_PAT_DOCKERHUB
198
234
environment :
199
235
PYTHON_VERSION : py36
200
236
PERCY_ENABLE : 0
201
237
test-legacy-27 :
202
238
<< : *test-legacy
203
239
docker :
204
240
- image : circleci/python:2.7-stretch-node-browsers
241
+ auth :
242
+ username : dashautomation
243
+ password : $DASH_PAT_DOCKERHUB
205
244
environment :
206
245
PYTHON_VERSION : py27
207
246
PERCY_ENABLE : 0
@@ -210,37 +249,63 @@ workflows:
210
249
version : 2
211
250
python3.7 :
212
251
jobs :
213
- - lint-unit-37
214
- - build-dash-37
252
+ - lint-unit-37 :
253
+ context :
254
+ - dash-docker-hub
255
+ - build-dash-37 :
256
+ context :
257
+ - dash-docker-hub
215
258
- test-37 :
259
+ context :
260
+ - dash-docker-hub
216
261
requires :
217
262
- build-dash-37
218
263
- test-legacy-37 :
264
+ context :
265
+ - dash-docker-hub
219
266
requires :
220
267
- build-dash-37
221
268
- percy-finalize :
269
+ context :
270
+ - dash-docker-hub
222
271
requires :
223
272
- test-37
224
273
- test-legacy-37
225
274
226
275
python3.6 :
227
276
jobs :
228
- - lint-unit-36
229
- - build-dash-36
277
+ - lint-unit-36 :
278
+ context :
279
+ - dash-docker-hub
280
+ - build-dash-36 :
281
+ context :
282
+ - dash-docker-hub
230
283
- test-36 :
284
+ context :
285
+ - dash-docker-hub
231
286
requires :
232
287
- build-dash-36
233
288
- test-legacy-36 :
289
+ context :
290
+ - dash-docker-hub
234
291
requires :
235
292
- build-dash-36
236
293
237
294
python2.7 :
238
295
jobs :
239
- - lint-unit-27
240
- - build-dash-27
296
+ - lint-unit-27 :
297
+ context :
298
+ - dash-docker-hub
299
+ - build-dash-27 :
300
+ context :
301
+ - dash-docker-hub
241
302
- test-27 :
303
+ context :
304
+ - dash-docker-hub
242
305
requires :
243
306
- build-dash-27
244
307
- test-legacy-27 :
308
+ context :
309
+ - dash-docker-hub
245
310
requires :
246
311
- build-dash-27
0 commit comments