Skip to content

Commit 9a8f47d

Browse files
Excavator: Adds the circle-all CircleCI job to repositories that do not have it
1 parent d6458f2 commit 9a8f47d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,13 @@ jobs:
169169
paths: [ ~/.gradle/caches ]
170170
- store_test_results: { path: ~/junit }
171171
- store_artifacts: { path: ~/artifacts }
172+
circle-all:
173+
docker:
174+
- image: busybox:1.34.1
175+
resource_class: small
176+
steps:
177+
- run:
178+
command: echo "All required jobs finished successfully"
172179

173180

174181
workflows:
@@ -197,3 +204,13 @@ workflows:
197204
- publish:
198205
requires: [ unit-test, check, build, trial-publish ]
199206
filters: { tags: { only: /.*/ }, branches: { only: develop } }
207+
- circle-all:
208+
requires:
209+
- trial-publish
210+
- unit-test
211+
- compile
212+
- build
213+
- check
214+
filters:
215+
tags:
216+
only: /.*/

0 commit comments

Comments
 (0)