File tree 2 files changed +28
-2
lines changed
2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ var_9: &docker-firefox-image
64
64
# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs
65
65
var_10 : &attach_release_output
66
66
attach_workspace :
67
- at : dist/releases
67
+ at : dist/releases
68
68
69
69
# -----------------------------
70
70
# Container version of CircleCI
@@ -200,6 +200,25 @@ jobs:
200
200
paths :
201
201
- " **/*"
202
202
203
+ # Since there is no UMD bundle that includes everything from the CDK, we need to move
204
+ # all bundles into a directory. This allows us to store all CDK UMD bundles as job
205
+ # artifacts that can be picked up by the Angular Github bot.
206
+ - run :
207
+ name : Prepare CDK artifacts for publish.
208
+ command : |
209
+ mkdir -p /tmp/cdk-umd-artifacts
210
+ cp dist/releases/cdk/bundles/*.umd.js /tmp/cdk-umd-artifacts
211
+
212
+ # Publish bundle artifacts which will be used to calculate the size change.
213
+ # Note: Make sure that the size plugin from the Angular robot fetches the artifacts
214
+ # from this CircleCI job (see .github/angular-robot.yml)
215
+ - store_artifacts :
216
+ path : dist/releases/material/bundles/material.umd.js
217
+ destination : material.umd.js
218
+ - store_artifacts :
219
+ path : /tmp/cdk-umd-artifacts
220
+ destination : /
221
+
203
222
- *save_cache
204
223
205
224
# ----------------------------------------
Original file line number Diff line number Diff line change 2
2
3
3
# options for the size plugin
4
4
size :
5
- disabled : true
5
+ disabled : false
6
+ # Name of the status that will be responsible for providing
7
+ # artifacts that will be measured by the robot.
8
+ circleCiStatusName : " ci/circleci: build_release_packages"
9
+ # Byte value of maximum allowed change in size
10
+ maxSizeIncrease : 1500
6
11
7
12
# options for the merge plugin
8
13
merge :
55
60
- " ci/circleci: lint"
56
61
- " ci/circleci: bazel_build_test"
57
62
- " ci/circleci: tests_local_browsers"
63
+ - " ci/circleci: tests_browserstack"
64
+ - " ci/circleci: build_release_packages"
58
65
59
66
# the comment that will be added when the merge label is added despite failing checks, leave empty or set to false to disable
60
67
# {{MERGE_LABEL}} will be replaced by the value of the mergeLabel option
You can’t perform that action at this time.
0 commit comments