Skip to content

Commit

Permalink
Excavator: Adds the circle-all CircleCI job to repositories that do n…
Browse files Browse the repository at this point in the history
…ot have it
  • Loading branch information
svc-excavator-bot committed Oct 11, 2024
1 parent 41e0e0c commit 3222c6f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,13 @@ jobs:
paths: [ ~/.gradle/caches ]
- store_test_results: { path: ~/junit }
- store_artifacts: { path: ~/artifacts }
circle-all:
docker:
- image: busybox:1.34.1
resource_class: small
steps:
- run:
command: echo "All required jobs finished successfully"


workflows:
Expand Down Expand Up @@ -251,3 +258,15 @@ workflows:
- publish:
requires: [ unit-test, unit-test-11, check, build, build-11, trial-publish ]
filters: { tags: { only: /.*/ }, branches: { only: master } }
- circle-all:
requires:
- unit-test-11
- trial-publish
- unit-test
- compile
- build
- build-11
- check
filters:
tags:
only: /.*/

0 comments on commit 3222c6f

Please sign in to comment.