From 6208a81c2b9975bf0c1bbf5a5bbcd9412fdb76ef Mon Sep 17 00:00:00 2001 From: Excavator Bot <33266368+svc-excavator-bot@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:58:11 -0700 Subject: [PATCH] Excavator: Render CircleCI file using template specified in .circleci/template.sh (#305) --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b41d2ee6..03fae7b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,13 @@ all-tags-filter: &all-tags-filter tags: only: /.*/ +jobs: + circle-all: + docker: [{ image: 'busybox:1.36.1@sha256:6d9ac9237a84afe1516540f40a0fafdc86859b2141954b4d643af7066d598b74' }] + resource_class: small + steps: + - run: {command: echo "All required jobs finished successfully"} + workflows: version: 2 verify-test-dist-publish: @@ -50,3 +57,6 @@ workflows: <<: *homepath <<: *gopath <<: *all-tags-filter + - circle-all: + requires: [verify, test, dist] + <<: *all-tags-filter