Skip to content

build: move all jobs into a single workflow #17607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 3 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ jobs:
workflows:
version: 2

bazel_targets:
default_workflow:
jobs:
- bazel_build:
filters: *ignore_presubmit_branch_filter
Expand All @@ -494,34 +494,21 @@ workflows:
filters: *ignore_presubmit_branch_filter
- tests_local_browsers:
filters: *ignore_presubmit_branch_filter

unit_tests:
jobs:
- tests_browserstack:
filters: *ignore_presubmit_branch_filter
- tests_saucelabs:
filters: *ignore_presubmit_branch_filter

integration_tests:
jobs:
- e2e_tests:
filters: *ignore_presubmit_branch_filter

release_output:
jobs:
- build_release_packages:
filters: *ignore_presubmit_branch_filter
- lint:
filters: *ignore_presubmit_branch_filter
- publish_snapshots:
filters: *publish_branches_filter
requires:
- build_release_packages

# Lint workflow. As we want to lint in one job, this is a workflow with just one job.
lint:
jobs:
- lint:
filters: *ignore_presubmit_branch_filter

# Snapshot tests workflow that is scheduled to run all specified jobs every hour.
# This workflow runs various jobs against the Angular snapshot builds from Github.
snapshot_tests:
Expand Down