parent
431ddb9a45
commit
d1cc7a0b26
|
@ -7,10 +7,7 @@
|
||||||
build --repository_cache=/home/circleci/bazel_repository_cache
|
build --repository_cache=/home/circleci/bazel_repository_cache
|
||||||
|
|
||||||
# Don't be spammy in the logs
|
# Don't be spammy in the logs
|
||||||
# TODO(gmagolan): Hide progress again once build performance improves
|
build --noshow_progress
|
||||||
# Presently, CircleCI can timeout during bazel test ... with the following
|
|
||||||
# error: Too long with no output (exceeded 10m0s)
|
|
||||||
# build --noshow_progress
|
|
||||||
|
|
||||||
# Print all the options that apply to the build.
|
# Print all the options that apply to the build.
|
||||||
# This helps us diagnose which options override others
|
# This helps us diagnose which options override others
|
||||||
|
|
|
@ -197,7 +197,9 @@ jobs:
|
||||||
- *setup_circleci_bazel_config
|
- *setup_circleci_bazel_config
|
||||||
# Setup remote execution and run RBE-compatible tests.
|
# Setup remote execution and run RBE-compatible tests.
|
||||||
- *setup_bazel_remote_execution
|
- *setup_bazel_remote_execution
|
||||||
- run: yarn bazel test //... --build_tag_filters=-ivy-only --test_tag_filters=-ivy-only
|
- run:
|
||||||
|
command: yarn bazel test //... --build_tag_filters=-ivy-only --test_tag_filters=-ivy-only
|
||||||
|
no_output_timeout: 20m
|
||||||
- run: mkdir ~/testlogs
|
- run: mkdir ~/testlogs
|
||||||
- run: cp -Lr dist/testlogs/* ~/testlogs
|
- run: cp -Lr dist/testlogs/* ~/testlogs
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
|
@ -219,7 +221,9 @@ jobs:
|
||||||
# We need to explicitly specify the --symlink_prefix option because otherwise we would
|
# We need to explicitly specify the --symlink_prefix option because otherwise we would
|
||||||
# not be able to easily find the output bin directory when uploading artifacts for size
|
# not be able to easily find the output bin directory when uploading artifacts for size
|
||||||
# measurements.
|
# measurements.
|
||||||
- run: yarn test-ivy-aot //... --symlink_prefix=dist/
|
- run:
|
||||||
|
command: yarn test-ivy-aot //... --symlink_prefix=dist/
|
||||||
|
no_output_timeout: 20m
|
||||||
|
|
||||||
# Publish bundle artifacts which will be used to calculate the size change. **Note**: Make
|
# Publish bundle artifacts which will be used to calculate the size change. **Note**: Make
|
||||||
# sure that the size plugin from the Angular robot fetches the artifacts from this CircleCI
|
# sure that the size plugin from the Angular robot fetches the artifacts from this CircleCI
|
||||||
|
@ -269,6 +273,7 @@ jobs:
|
||||||
--username $SAUCE_USERNAME \
|
--username $SAUCE_USERNAME \
|
||||||
--key $(echo $SAUCE_ACCESS_KEY | rev) \
|
--key $(echo $SAUCE_ACCESS_KEY | rev) \
|
||||||
yarn bazel test //:test_web_all
|
yarn bazel test //:test_web_all
|
||||||
|
no_output_timeout: 20m
|
||||||
- *notify_dev_infra_on_fail
|
- *notify_dev_infra_on_fail
|
||||||
|
|
||||||
test_aio:
|
test_aio:
|
||||||
|
|
Loading…
Reference in New Issue