bump rust version in base docker image (#824) #46
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
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- .github/workflows/services-base.yml | |
- docker/base.Dockerfile | |
pull_request: | |
paths: | |
- .github/workflows/services-base.yml | |
- docker/base.Dockerfile | |
name: Build (services base) | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: blockscout/services-base | |
jobs: | |
check_tag: | |
name: Check tag existence | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.get_image_tag.outputs.tag }} | |
is_new: ${{ steps.check_existence.outputs.is_new }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get image tag | |
id: get_image_tag | |
env: | |
DOCKERFILE_PATH: "docker/base.Dockerfile" | |
run: | | |
CONTENT=$(cat $DOCKERFILE_PATH) | |
nl=$'\n' | |
if [[ $CONTENT =~ ARG\ CARGO_CHEF_VERSION=([^$nl]+) ]]; then | |
CARGO_CHEF_TAG=${BASH_REMATCH[1]} | |
else | |
echo "Failed to extract CARGO_CHEF_TAG from Dockerfile" | |
exit 1 | |
fi | |
if [[ $CONTENT =~ ARG\ PROTOC_VERSION=([^$nl]+) ]]; then | |
PROTOC_VERSION=${BASH_REMATCH[1]} | |
else | |
echo "Failed to extract PROTOC_VERSION from Dockerfile" | |
exit 1 | |
fi | |
if [[ $CONTENT =~ ARG\ PROTOC_GEN_OPENAPIV2_VERSION=([^$nl]+) ]]; then | |
PROTOC_GEN_OPENAPIV2_VERSION=${BASH_REMATCH[1]} | |
else | |
echo "Failed to extract PROTOC_GEN_OPENAPIV2_VERSION from Dockerfile" | |
exit 1 | |
fi | |
# E.g, chef-0.1.62-rust-1.75-buster-protoc-25.2-openapi-2.19.0 | |
TAG=chef-${CARGO_CHEF_TAG}-protoc-${PROTOC_VERSION}-openapi-${PROTOC_GEN_OPENAPIV2_VERSION} | |
echo "TAG=$TAG" | |
# Save values to be available from the next steps | |
echo "tag=$TAG" >> $GITHUB_OUTPUT | |
- name: Check image tag exists | |
id: check_existence | |
env: | |
TAG: ${{ steps.get_image_tag.outputs.tag }} | |
run: | | |
TOKEN=$(echo ${{ secrets.GITHUB_TOKEN }} | base64) | |
TAGS_RESPONSE=$(curl -H "Authorization: Bearer ${TOKEN}" https://ghcr.io/v2/${IMAGE_NAME}/tags/list) | |
# E.g, {"name":"blockscout/services-base","tags":["latest","chef-0.1.62-rust-1.75-buster-protoc-25.2-openapi-2.19.0"]} | |
# or {"errors":[{"code":"NAME_UNKNOWN","message":"repository name not known to registry"}]} | |
echo "List tags response: ${TAGS_RESPONSE}" | |
if echo "${TAGS_RESPONSE}" | jq -e "if has(\"tags\") then .tags else [] end | map(select(. == \"$TAG\")) | length > 0" > /dev/null; then | |
echo "There is already a pushed image with ${TAG} as tag. Skipping." | |
echo "is_new=false" >> $GITHUB_OUTPUT | |
else | |
echo "is_new=true" >> $GITHUB_OUTPUT | |
fi | |
build_and_push: | |
name: Build and push | |
needs: | |
- check_tag | |
if: needs.check_tag.outputs.is_new == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: "docker" | |
file: "docker/base.Dockerfile" | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.check_tag.outputs.tag }} , ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest | |
platforms: | | |
linux/amd64 | |
linux/arm64/v8 | |
labels: ${{ steps.meta.outputs.labels }} |