Skip to content

Commit

Permalink
add workflow to validate docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
akagami-harsh committed Nov 11, 2023
1 parent 3ad2c52 commit 4583ce3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-docker-image-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Image Validation
on:
pull_request:
branches:
- master

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: jaegertracting/jaeger
path: jaeger

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

0 comments on commit 4583ce3

Please sign in to comment.