Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Excavator: Adds the circle-all CircleCI job to repositories that do not have it #102

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,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:
Expand All @@ -165,3 +172,12 @@ workflows:
- publish:
requires: [ unit-test, check, trial-publish ]
filters: { tags: { only: /.*/ }, branches: { only: develop } }
- circle-all:
requires:
- trial-publish
- unit-test
- compile
- check
filters:
tags:
only: /.*/