-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate docker-ci-tools workflow to Github Actions (#4454)
- Loading branch information
1 parent
f00ed6a
commit e50f5d9
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: docker-ci-tools | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- 'tools/**' | ||
|
||
env: | ||
IMAGE_NAME: grafana/tempo-ci-tools | ||
|
||
# Needed to login to DockerHub | ||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
|
||
get-image-tag: | ||
runs-on: ubuntu-24.04 | ||
outputs: | ||
tag: ${{ steps.get-tag.outputs.tag }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- id: get-tag | ||
run: | | ||
echo "tag=$(./tools/image-tag)" >> "$GITHUB_OUTPUT" | ||
docker-ci-tools: | ||
needs: get-image-tag | ||
strategy: | ||
matrix: | ||
runner_arch: [ { runner: ubuntu-24.04, arch: amd64 }, { runner: github-hosted-ubuntu-arm64, arch: arm64 } ] | ||
runs-on: ${{ matrix.runner_arch.runner }} | ||
env: | ||
TAG: ${{ needs.get-image-tag.outputs.tag }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to DockerHub | ||
uses: grafana/shared-workflows/actions/dockerhub-login@dockerhub-login-v1.0.0 | ||
|
||
- name: docker-build-and-push | ||
run: | | ||
TAG_ARCH="$TAG-${{ matrix.runner_arch.arch }}" | ||
docker build -f tools/Dockerfile -t $IMAGE_NAME:$TAG_ARCH . | ||
docker push $IMAGE_NAME:$TAG_ARCH | ||
manifest: | ||
needs: ['get-image-tag', 'docker-ci-tools'] | ||
runs-on: ubuntu-latest | ||
env: | ||
TAG: ${{ needs.get-image-tag.outputs.tag }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to DockerHub | ||
uses: grafana/shared-workflows/actions/dockerhub-login@dockerhub-login-v1.0.0 | ||
|
||
- name: docker-manifest-create-and-push | ||
run: | | ||
docker manifest create \ | ||
$IMAGE_NAME:$TAG \ | ||
--amend $IMAGE_NAME:$TAG-amd64 \ | ||
--amend $IMAGE_NAME:$TAG-arm64 | ||
docker manifest push $IMAGE_NAME:$TAG | ||
docker manifest create \ | ||
$IMAGE_NAME:latest \ | ||
--amend $IMAGE_NAME:$TAG-amd64 \ | ||
--amend $IMAGE_NAME:$TAG-arm64 | ||
docker manifest push $IMAGE_NAME:latest |