Skip to content

feat: Create arm + x86 Docker images to allow local builds #7

feat: Create arm + x86 Docker images to allow local builds

feat: Create arm + x86 Docker images to allow local builds #7

name: Build Docker image for building PGlite
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
message:
description: 'Build PGlite builder Docker image'
push:
branches: ['main']
pull_request:
env:
DOCKERHUB_REPO: electricsql
IMAGE_NAME: pglite-builder
jobs:
build:
name: Build Docker image
runs-on: ubuntu-22.04
environment: PGlite Build Parameters
env:
PG_VERSION: ${{ vars.PG_VERSION }}
SDK_VERSION: ${{ vars.PYTHON_WASM_SDK_VERSION }}
IMGNAME: electricsql/pglite-builder
IMGTAG: ${{ vars.PG_VERSION }}_${{ vars.PYTHON_WASM_SDK_VERSION }}
steps:
- name: Log build parameters
run: |
echo "Building with PG_VERSION=${PG_VERSION} and SDK_VERSION=${SDK_VERSION}"
- name: Check if image exists
id: image-exists
run: |
if docker manifest inspect ${{ env.IMGNAME }}:${{ env.IMGTAG }} > /dev/null 2>&1; then
echo "exists=true" >> $GITHUB_OUTPUT
else
echo "exists=false" >> $GITHUB_OUTPUT
fi
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
if: steps.image-exists.outputs.exists == 'false'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
if: steps.image-exists.outputs.exists == 'false'
- uses: actions/checkout@v4
if: steps.image-exists.outputs.exists == 'false'
- name: Build and push
uses: docker/build-push-action@v6
if: steps.image-exists.outputs.exists == 'false'
with:
platforms: linux/amd64,linux/arm64
push: true
build-args: |
PG_VERSION=${{ env.PG_VERSION }}
SDK_VERSION=${{ env.SDK_VERSION }}
tags: |
${{ env.IMGNAME }}:${{ env.IMGTAG }}
${{ env.IMGNAME }}:latest