File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 7
7
build --repository_cache=/home/circleci/bazel_repository_cache
8
8
9
9
# Don't be spammy in the logs
10
- # TODO(gmagolan): Hide progress again once build performance improves
11
- # Presently, CircleCI can timeout during bazel test ... with the following
12
- # error: Too long with no output (exceeded 10m0s)
13
- # build --noshow_progress
10
+ build --noshow_progress
14
11
15
12
# Print all the options that apply to the build.
16
13
# This helps us diagnose which options override others
Original file line number Diff line number Diff line change @@ -197,7 +197,9 @@ jobs:
197
197
- *setup_circleci_bazel_config
198
198
# Setup remote execution and run RBE-compatible tests.
199
199
- *setup_bazel_remote_execution
200
- - run : yarn bazel test //... --build_tag_filters=-ivy-only --test_tag_filters=-ivy-only
200
+ - run :
201
+ command : yarn bazel test //... --build_tag_filters=-ivy-only --test_tag_filters=-ivy-only
202
+ no_output_timeout : 20m
201
203
- run : mkdir ~/testlogs
202
204
- run : cp -Lr dist/testlogs/* ~/testlogs
203
205
- store_test_results :
@@ -219,7 +221,9 @@ jobs:
219
221
# We need to explicitly specify the --symlink_prefix option because otherwise we would
220
222
# not be able to easily find the output bin directory when uploading artifacts for size
221
223
# measurements.
222
- - run : yarn test-ivy-aot //... --symlink_prefix=dist/
224
+ - run :
225
+ command : yarn test-ivy-aot //... --symlink_prefix=dist/
226
+ no_output_timeout : 20m
223
227
224
228
# Publish bundle artifacts which will be used to calculate the size change. **Note**: Make
225
229
# sure that the size plugin from the Angular robot fetches the artifacts from this CircleCI
@@ -269,6 +273,7 @@ jobs:
269
273
--username $SAUCE_USERNAME \
270
274
--key $(echo $SAUCE_ACCESS_KEY | rev) \
271
275
yarn bazel test //:test_web_all
276
+ no_output_timeout : 20m
272
277
- *notify_dev_infra_on_fail
273
278
274
279
test_aio :
You can’t perform that action at this time.
0 commit comments