Skip to content

Commit b15a403

Browse files
gkalpakkara
authored andcommitted
ci(docs-infra): re-enable aio_monitoring CircleCI jobs and change time (angular#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 angular#30101 PR Close angular#30168
1 parent 37c598d commit b15a403

1 file changed

Lines changed: 17 additions & 19 deletions

File tree

.circleci/config.yml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -712,25 +712,23 @@ workflows:
712712
cron: "0 * * * *"
713713
filters: *publish_branches_filter
714714

715-
# This job is currently disabled due to a version skew problem.
716-
# More info is available here: https://github.com/angular/angular/issues/30101
717-
# aio_monitoring:
718-
# jobs:
719-
# - setup
720-
# - aio_monitoring_stable:
721-
# requires:
722-
# - setup
723-
# - aio_monitoring_next:
724-
# requires:
725-
# - setup
726-
# triggers:
727-
# - schedule:
728-
# # Runs AIO monitoring jobs at 00:00AM every day.
729-
# cron: "0 0 * * *"
730-
# filters:
731-
# branches:
732-
# only:
733-
# - master
715+
aio_monitoring:
716+
jobs:
717+
- setup
718+
- aio_monitoring_stable:
719+
requires:
720+
- setup
721+
- aio_monitoring_next:
722+
requires:
723+
- setup
724+
triggers:
725+
- schedule:
726+
# Runs AIO monitoring jobs at 10:00AM every day.
727+
cron: "0 10 * * *"
728+
filters:
729+
branches:
730+
only:
731+
- master
734732

735733
# TODO:
736734
# - don't build the g3 branch

0 commit comments

Comments
 (0)