Skip to content

Commit ee6970c

Browse files
Excavator: Adds the circle-all CircleCI job to repositories that do not have it
1 parent 41e0e0c commit ee6970c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/config.yml

+19
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,13 @@ jobs:
216216
paths: [ ~/.gradle/caches ]
217217
- store_test_results: { path: ~/junit }
218218
- store_artifacts: { path: ~/artifacts }
219+
circle-all:
220+
docker:
221+
- image: busybox:1.34.1
222+
resource_class: small
223+
steps:
224+
- run:
225+
command: echo "All required jobs finished successfully"
219226

220227

221228
workflows:
@@ -251,3 +258,15 @@ workflows:
251258
- publish:
252259
requires: [ unit-test, unit-test-11, check, build, build-11, trial-publish ]
253260
filters: { tags: { only: /.*/ }, branches: { only: master } }
261+
- circle-all:
262+
requires:
263+
- unit-test-11
264+
- trial-publish
265+
- unit-test
266+
- compile
267+
- build
268+
- build-11
269+
- check
270+
filters:
271+
tags:
272+
only: /.*/

0 commit comments

Comments
 (0)