Skip to content

Commit 519b0bc

Browse files
Excavator: Adds the circle-all CircleCI job to repositories that do not have it
1 parent 2f9e848 commit 519b0bc

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.circleci/config.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@ jobs:
131131
paths: [ ~/.gradle/caches ]
132132
- store_test_results: { path: ~/junit }
133133
- store_artifacts: { path: ~/artifacts }
134+
circle-all:
135+
docker:
136+
- image: busybox:1.34.1
137+
resource_class: small
138+
steps:
139+
- run:
140+
command: echo "All required jobs finished successfully"
134141

135142

136143
workflows:
@@ -145,4 +152,11 @@ workflows:
145152

146153
- publish:
147154
requires: [ check, trial-publish ]
148-
filters: { tags: { only: /.*/ }, branches: { only: develop } }
155+
filters: { tags: { only: /.*/ }, branches: { only: develop } }
156+
- circle-all:
157+
requires:
158+
- trial-publish
159+
- check
160+
filters:
161+
tags:
162+
only: /.*/

0 commit comments

Comments
 (0)