Update README.md #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-submodules | |
make proto PROTOC_IMAGE=protobuf |