Max header size (#614) #152
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: | |
- 'master' | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
name: Build & push docker image | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
psql: [13,14,15,16] | |
postgis: [3.4] | |
os: [ubuntu-latest] | |
env: | |
IMG_NAME: ${{ github.repository }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Extract highest version | |
id: extract-highest-version | |
if: ${{ matrix.psql == '16' && github.ref_type == 'tag' }} | |
run: | | |
# List tags and store the result in a variable | |
TAGS=$(git ls-remote --tags origin) | |
# Extract major.minor version numbers from tags and store them in an array | |
VERSIONS=() | |
while read -r line; do | |
tag=$(echo "$line" | cut -d"/" -f3) | |
version=$(echo "$tag" | cut -d"v" -f2) | |
major=$(echo "$version" | cut -d"." -f1) | |
minor=$(echo "$version" | cut -d"." -f2) | |
VERSIONS+=("$major.$minor") | |
done <<< "$TAGS" | |
# Sort the array to find the highest version | |
IFS=$'\n' sorted=($(sort -rV <<<"${VERSIONS[*]}")) | |
# Output the highest version | |
echo "highest-version=v${sorted[0]}" >> "$GITHUB_OUTPUT" | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
# list of Docker images to use as base name for tags | |
images: mobilitydb/mobilitydb | |
# generate Docker tags based on the following events/attributes | |
flavor: | | |
latest=${{ matrix.psql == '16' && github.ref_type == 'tag' && contains(github.ref_name, steps.extract-highest-version.outputs.highest-version) }} | |
prefix=${{ matrix.psql }}-${{ matrix.postgis }}- | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
# Add linux/arm64 when postgis builds arm64 version | |
platforms: linux/amd64 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
# Add linux/arm64 when postgis builds arm64 version | |
platforms: linux/amd64 | |
context: . | |
file: ./docker/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
build-args: | | |
POSTGRES_VERSION=${{ matrix.psql }} | |
POSTGIS_VERSION=${{ matrix.postgis }} | |
MOBILITYDB_TAG=${{ github.ref_name }} |