From 5afd9e7848b52d2d726680d463f9bb8f39bc237b Mon Sep 17 00:00:00 2001 From: svc-excavator-bot Date: Thu, 19 Sep 2024 17:49:01 +0000 Subject: [PATCH] Excavator: Adds the circle-all CircleCI job to repositories that do not have it --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 83dad197..15e14428 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -169,6 +169,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: @@ -197,3 +204,13 @@ workflows: - publish: requires: [ unit-test, check, build, trial-publish ] filters: { tags: { only: /.*/ }, branches: { only: develop } } + - circle-all: + requires: + - trial-publish + - unit-test + - compile + - build + - check + filters: + tags: + only: /.*/