Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PROTO-1349] Continuous deployment for healthz #6350

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,13 +429,15 @@ workflows:
packages/identity-service/.* run-identity-workflow true
packages/identity-service/.* run-integration-workflow true
eth-contracts/.* run-eth-contracts-workflow true
monitoring/healthz/.* run-healthz-workflow true
protocol-dashboard/.* run-protocol-dashboard-workflow true
contracts/.* run-contracts-workflow true
.circleci/.* run-discovery-workflow true
.circleci/.* run-creator-workflow true
.circleci/.* run-identity-workflow true
.circleci/.* run-eth-contracts-workflow true
.circleci/.* run-protocol-dashboard-workflow true
.circleci/.* run-healthz-workflow true
.circleci/.* run-contracts-workflow true
.circleci/.* run-sdk-workflow true
.circleci/.* run-web-workflow true
Expand Down Expand Up @@ -504,6 +506,7 @@ workflows:
packages/mobile/.* run-mobile-workflow true
packages/web/.* run-web-workflow true
protocol-dashboard/.* run-protocol-dashboard-workflow true
monitoring/healthz/.* run-healthz-workflow true
requires:
- generate-config
- init
Expand Down
3 changes: 3 additions & 0 deletions .circleci/src/@continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ parameters:
run-protocol-dashboard-workflow:
type: boolean
default: false
run-healthz-workflow:
type: boolean
default: false
# Can enable recurring probers against stage at some point
# workflows:
# version: 2.1
Expand Down
9 changes: 9 additions & 0 deletions .circleci/src/workflows/healthz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
when: << pipeline.parameters.run-healthz-workflow >>
jobs:
- push-docker-image:
name: push-healthz
context: [GCP, dockerhub]
service: healthz
filters:
branches:
only: main
5 changes: 5 additions & 0 deletions .circleci/src/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
name: push-trpc
context: [GCP, dockerhub]
service: trpc
- push-docker-image:
name: push-healthz
context: [GCP, dockerhub]
service: healthz

- release-github-draft-trigger:
filters:
Expand Down Expand Up @@ -77,6 +81,7 @@ jobs:
- push-pedalboard-sla-auditor
- push-comms
- push-trpc
- push-healthz
filters:
branches:
only: /^release.*$/
Expand Down