Skip to content

Commit

Permalink
reset circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
sugarmanz committed Jan 25, 2024
1 parent 2b68604 commit 78345ac
Showing 1 changed file with 119 additions and 1 deletion.
120 changes: 119 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,55 @@ workflows:
requires:
- setup

- applitools_init:
filters:
branches:
ignore:
- /pull\/.*/
context:
- applitools
requires:
- bazelrc

- build:
name: build-trunk
filters:
branches:
ignore:
- /pull\/.*/
requires:
- bazelrc

- build:
name: build-fork
filters:
branches:
only:
- /pull\/.*/
requires:
- setup

- build_ios:
name: build-ios-trunk
filters:
branches:
ignore:
- /pull\/.*/
context:
- applitools
requires:
- applitools_init
- bazelrc

- build_ios:
name: build-ios-fork
filters:
branches:
only:
- /pull\/.*/
requires:
- setup

- maybe_release:
filters:
branches:
Expand All @@ -343,7 +392,76 @@ workflows:
context:
- Publish
requires:
- bazelrc
- build-trunk
- build-ios-trunk

- test:
name: test-trunk
filters:
branches:
ignore:
- /pull\/.*/
requires:
- build-trunk

- test:
name: test-fork
filters:
branches:
only:
- /pull\/.*/
requires:
- build-fork

- android_test:
name: android-test-trunk
filters:
branches:
ignore:
- /pull\/.*/
context:
- applitools
requires:
- applitools_init
- build-trunk

- android_test:
name: android-test-fork
filters:
branches:
only:
- /pull\/.*/
requires:
- build-fork

- coverage:
name: coverage-trunk
filters:
branches:
ignore:
- /pull\/.*/
requires:
- build-trunk

- coverage:
name: coverage-fork
filters:
branches:
only:
- /pull\/.*/
requires:
- build-fork

- applitools_cleanup:
filters:
branches:
ignore:
- /pull\/.*/
context:
- applitools
requires:
- android-test-trunk
- build-ios-trunk

build_and_test_main:
when:
Expand Down

0 comments on commit 78345ac

Please sign in to comment.