We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6458f2 commit 10c2c6cCopy full SHA for 10c2c6c
.circleci/config.yml
@@ -169,6 +169,13 @@ jobs:
169
paths: [ ~/.gradle/caches ]
170
- store_test_results: { path: ~/junit }
171
- 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"
179
180
181
workflows:
@@ -197,3 +204,13 @@ workflows:
197
204
- publish:
198
205
requires: [ unit-test, check, build, trial-publish ]
199
206
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