ci(docs-infra): re-enable aio_monitoring CircleCI jobs and change time (#30168)

The `aio_monitoring_next` CircleCI job was disabled due to a failure in
[302254](https://circleci.com/gh/angular/angular/302254). It turned out
the failure was caused because the job happened to run after a change
had been merged into master and right before it was deployed to
https://next.angular.io/ causing the tests not to match the deployed
version.

This commit re-enables the job and moves it to a different time, when it
is less likely that PRs will be being merged (and thus reducing the risk
of a similar timming issue).

Fixes #30101

PR Close #30168
This commit is contained in:
George Kalpakas 2019-04-27 12:56:34 +03:00 committed by Kara Erickson
parent 37c598db04
commit b15a403c71

View File

@ -712,25 +712,23 @@ workflows:
cron: "0 * * * *" cron: "0 * * * *"
filters: *publish_branches_filter filters: *publish_branches_filter
# This job is currently disabled due to a version skew problem. aio_monitoring:
# More info is available here: https://github.com/angular/angular/issues/30101 jobs:
# aio_monitoring: - setup
# jobs: - aio_monitoring_stable:
# - setup requires:
# - aio_monitoring_stable: - setup
# requires: - aio_monitoring_next:
# - setup requires:
# - aio_monitoring_next: - setup
# requires: triggers:
# - setup - schedule:
# triggers: # Runs AIO monitoring jobs at 10:00AM every day.
# - schedule: cron: "0 10 * * *"
# # Runs AIO monitoring jobs at 00:00AM every day. filters:
# cron: "0 0 * * *" branches:
# filters: only:
# branches: - master
# only:
# - master
# TODO: # TODO:
# - don't build the g3 branch # - don't build the g3 branch