Skip to content
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

Add old job names to support release branches rules (#7576) #7578

Merged
merged 1 commit into from
Oct 20, 2023
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
81 changes: 51 additions & 30 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,27 +126,33 @@ workflows:
- internal-instrumentation-tests:
requires:
- assemble-instrumentation-test-internal
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-1
suite: TestSuitePart1
requires:
- assemble-instrumentation-test
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-2
suite: TestSuitePart2
requires:
- assemble-instrumentation-test
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-3
suite: TestSuitePart3
requires:
- assemble-instrumentation-test
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-4
suite: TestSuitePart4
requires:
- assemble-instrumentation-test
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-5
suite: TestSuitePart5
requires:
- assemble-instrumentation-test
- instrumentation-tests:
- instrumentation-tests-part:
name: instrumentation-tests-part-6
suite: TestSuitePart6
requires:
- assemble-instrumentation-test
Expand All @@ -160,6 +166,29 @@ workflows:
requires:
- unit-tests-ui
- unit-tests-core
# stubs for saving old job names
- instrumentation-tests:
requires:
- instrumentation-tests-part-1
- instrumentation-tests-part-2
- instrumentation-tests-part-3
- instrumentation-tests-part-4
- instrumentation-tests-part-5
- instrumentation-tests-part-6
- internal-instrumentation-tests
- static-analysis:
requires:
- verify-codestyle
- verify-license
- verify-common-sdk-version
- check-api-core
- check-api-ui
- check-api-androidauto
- check-public-documentation
- run-android-lint
- prepare-and-assemble:
requires:
- assemble
weekly-snapshot-workflow:
# Run workflow every Friday at 23:59 UTC
triggers:
Expand Down Expand Up @@ -672,6 +701,21 @@ commands:
#---------- JOBS ----------
#--------------------------
jobs:
instrumentation-tests:
executor: ndk-r22-latest-executor
steps:
- run: exit 0

static-analysis:
executor: ndk-r22-latest-executor
steps:
- run: exit 0

prepare-and-assemble:
executor: ndk-r22-latest-executor
steps:
- run: exit 0

assemble:
executor: ndk-r22-latest-executor
steps:
Expand Down Expand Up @@ -834,29 +878,6 @@ jobs:
- read-workspace
- run-android-lint

static-analysis:
executor: ndk-r22-latest-executor
resource_class: medium+
steps:
- when:
condition:
not:
matches:
pattern: "^add-changelog.*"
value: << pipeline.git.branch >>
steps:
- checkout
- restore-gradle-cache
- verify-codestyle
- verify-license
- verify-common-sdk-version
- check-api-core
- check-api-ui
- check-api-androidauto
- check-public-documentation
- run-android-lint
- run: exit 0

publish-documentation:
executor: ndk-r22-latest-executor
resource_class: medium+
Expand Down Expand Up @@ -940,7 +961,7 @@ jobs:
variant: "debug"
- run: exit 0

instrumentation-tests:
instrumentation-tests-part:
parameters:
suite:
type: string
Expand Down