Adding support to Typescript #28
Workflow file for this run
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
paths: | |
- .github/workflows/build-and-publish.yml | |
- Dockerfile | |
- protoc-wrapper | |
release: | |
types: [published] | |
# allow running release workflow manually | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
driver-opts: | | |
network=host | |
- name: Start local Docker registry | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
docker inspect registry > /dev/null || docker run --rm -d -p 5000:5000 --name registry registry:2 | |
- name: Extract tags/labels from Git | |
id: docker_meta | |
uses: docker/metadata-action@v5 | |
with: | |
# when running on pull request we want to push the image to local registry for further testing | |
images: | | |
jaegertracing/protobuf,enable=${{ github.event_name != 'pull_request' }} | |
localhost:5000/jaegertracing/protobuf,enable=${{ github.event_name == 'pull_request' }} | |
# The 'tags:' section defines how the Docker image will be tagged: | |
# - pushes to main branch will be published as 'latest' | |
# - pushes tagged with semver will be published as that version (without 'v') | |
# - other tags can be used as is | |
# Documentation: https://github.com/docker/metadata-action#tags-input | |
tags: | | |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }} | |
type=semver,pattern={{version}} | |
type=ref,event=tag | |
type=sha,enable=${{ github.event_name == 'pull_request' }} | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and maybe push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} | |
context: . | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
platforms: linux/amd64,linux/arm64 | |
# The following steps run only on pull requests and validate | |
# that the new image can run successfully in Jaeger repos. | |
# We do not check if the generated files would be different there, | |
# only that the build does not fail. | |
- name: Pull image for local testing | |
if: github.event_name == 'pull_request' | |
run: docker pull ${{ steps.docker_meta.outputs.tags }} | |
- name: Checkout Jaeger for validation | |
if: github.event_name == 'pull_request' | |
uses: actions/checkout@v4 | |
with: | |
repository: jaegertracing/jaeger | |
submodules: recursive | |
path: jaeger | |
- name: Build Proto in Jaeger | |
if: github.event_name == 'pull_request' | |
working-directory: jaeger | |
run: make proto DOCKER_PROTOBUF=${{ steps.docker_meta.outputs.tags }} | |
- name: Checkout jaeger-idl for validation | |
if: github.event_name == 'pull_request' | |
uses: actions/checkout@v4 | |
with: | |
repository: jaegertracing/jaeger-idl | |
submodules: recursive | |
path: jaeger-idl | |
- name: Build Proto in jaeger-idl | |
if: github.event_name == 'pull_request' | |
working-directory: jaeger-idl | |
run: make proto PROTOC_IMAGE=${{ steps.docker_meta.outputs.tags }} |