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

Update README.md #2

Closed
40 changes: 40 additions & 0 deletions .github/workflows/ci-docker-image-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Docker Image Validation
on:
push:
branches:
- master
pull_request:
branches:
- ci-validation-of-docker-images

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker buildx build -t protobuf .

- name: Checkout jaeger
uses: actions/checkout@v4
with:
repository: jaegertracing/jaeger
path: jaeger

- name: Checkout jaeger-idl
uses: actions/checkout@v4
with:
repository: jaegertracing/jaeger-idl
path: jaeger-idl

- name: Build Proto in Jaeger
working-directory: jaeger
run: |
make init-submodules
make proto JAEGER_DOCKER_PROTOBUF=protobuf

- name: Build Proto in Jaeger-idl
working-directory: jaeger-idl
run: |
make init-submodule
make proto PROTOC_IMAGE=protobuf