Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

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 Sep 19, 2024
1 parent 85f967a commit df29801
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,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 All @@ -165,3 +172,12 @@ workflows:
- publish:
requires: [ unit-test, check, trial-publish ]
filters: { tags: { only: /.*/ }, branches: { only: develop } }
- circle-all:
requires:
- trial-publish
- unit-test
- compile
- check
filters:
tags:
only: /.*/

0 comments on commit df29801

Please sign in to comment.