v1 circle-ci configs for proxyd

This commit is contained in:
Jacob Elias 2024-06-11 14:10:20 -05:00
parent e229fc7505
commit c2101a4fbb
73 changed files with 28 additions and 0 deletions

@ -17,6 +17,7 @@ workflows:
mapping: |
op-conductor-mon/.* run-build-op-conductor-mon true
op-ufm/.* run-build-op-ufm true
proxyd/.* run-build-proxyd true
.circleci/.* run-all true
.github/.* run-all true

@ -13,6 +13,9 @@ parameters:
run-build-op-ufm:
type: boolean
default: false
run-build-proxyd:
type: boolean
default: false
run-all:
type: boolean
default: false
@ -388,3 +391,27 @@ workflows:
- oplabs-gcr
requires:
- op-ufm-docker-build
op-proxyd:
when:
or: [<< pipeline.parameters.run-build-proxyd >>, << pipeline.parameters.run-all >>]
jobs:
- go-lint:
name: proxyd-lint
module: proxyd
- go-test:
name: proxyd-tests
module: proxyd
- docker-build:
name: proxyd-docker-build
docker_file: proxyd/Dockerfile
docker_name: proxyd
docker_tags: <<pipeline.git.revision>>,<<pipeline.git.branch>>
docker_context: .
- docker-publish:
name: proxyd-docker-publish
docker_name: proxyd
docker_tags: <<pipeline.git.revision>>,<<pipeline.git.branch>>
context:
- oplabs-gcr
requires:
- proxyd-docker-build