From 24c06091f236519b910355532598b3b4e0fe1c2b Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Thu, 18 Apr 2019 12:38:19 +0300 Subject: [PATCH] build(docs-infra): increase build artifact size limit for preview server (#29976) In #29926, the size of the build artifacts has increased due to turning on differential loading (which generates an es2015/es5 pair for each JS resource). To avoid the preview server's rejecting the build artifacts (as in [288181][1]), this commit increases the max allowed artifact size from 20MB to 25MB (current artifact size after #29926 is ~22MB). [1]: https://circleci.com/gh/angular/angular/288181 PR Close #29976 --- aio/aio-builds-setup/dockerbuild/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/aio-builds-setup/dockerbuild/Dockerfile b/aio/aio-builds-setup/dockerbuild/Dockerfile index 73439eb259..d77d210a5e 100644 --- a/aio/aio-builds-setup/dockerbuild/Dockerfile +++ b/aio/aio-builds-setup/dockerbuild/Dockerfile @@ -40,7 +40,7 @@ ARG AIO_TRUSTED_PR_LABEL="aio: preview" ARG TEST_AIO_TRUSTED_PR_LABEL="aio: preview" ARG AIO_PREVIEW_SERVER_HOSTNAME=preview.localhost ARG TEST_AIO_PREVIEW_SERVER_HOSTNAME=preview.localhost -ARG AIO_ARTIFACT_MAX_SIZE=20971520 +ARG AIO_ARTIFACT_MAX_SIZE=26214400 ARG TEST_AIO_ARTIFACT_MAX_SIZE=200 ARG AIO_PREVIEW_SERVER_PORT=3000 ARG TEST_AIO_PREVIEW_SERVER_PORT=3001