mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem This is a prerequisite for neondatabase/neon#12575 to keep all things relevant to `build-tools` image in a single directory ## Summary of changes - Rename `build_tools/` to `build-tools/` - Move `build-tools.Dockerfile` to `build-tools/Dockerfile`
204 lines
7.6 KiB
YAML
204 lines
7.6 KiB
YAML
name: Build build-tools image
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
archs:
|
|
description: "Json array of architectures to build"
|
|
# Default values are set in `check-image` job, `set-variables` step
|
|
type: string
|
|
required: false
|
|
debians:
|
|
description: "Json array of Debian versions to build"
|
|
# Default values are set in `check-image` job, `set-variables` step
|
|
type: string
|
|
required: false
|
|
outputs:
|
|
image-tag:
|
|
description: "build-tools tag"
|
|
value: ${{ jobs.check-image.outputs.tag }}
|
|
image:
|
|
description: "build-tools image"
|
|
value: ghcr.io/neondatabase/build-tools:${{ jobs.check-image.outputs.tag }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash -euo pipefail {0}
|
|
|
|
# The initial idea was to prevent the waste of resources by not re-building the `build-tools` image
|
|
# for the same tag in parallel workflow runs, and queue them to be skipped once we have
|
|
# the first image pushed to Docker registry, but GitHub's concurrency mechanism is not working as expected.
|
|
# GitHub can't have more than 1 job in a queue and removes the previous one, it causes failures if the dependent jobs.
|
|
#
|
|
# Ref https://github.com/orgs/community/discussions/41518
|
|
#
|
|
# concurrency:
|
|
# group: build-build-tools-image-${{ inputs.image-tag }}
|
|
# cancel-in-progress: false
|
|
|
|
# No permission for GITHUB_TOKEN by default; the **minimal required** set of permissions should be granted in each job.
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-image:
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
archs: ${{ steps.set-variables.outputs.archs }}
|
|
debians: ${{ steps.set-variables.outputs.debians }}
|
|
tag: ${{ steps.set-variables.outputs.image-tag }}
|
|
everything: ${{ steps.set-more-variables.outputs.everything }}
|
|
found: ${{ steps.set-more-variables.outputs.found }}
|
|
|
|
permissions:
|
|
packages: read
|
|
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set variables
|
|
id: set-variables
|
|
env:
|
|
ARCHS: ${{ inputs.archs || '["x64","arm64"]' }}
|
|
DEBIANS: ${{ inputs.debians || '["bullseye","bookworm"]' }}
|
|
IMAGE_TAG: |
|
|
${{ hashFiles('build-tools/Dockerfile',
|
|
'.github/workflows/build-build-tools-image.yml') }}
|
|
run: |
|
|
echo "archs=${ARCHS}" | tee -a ${GITHUB_OUTPUT}
|
|
echo "debians=${DEBIANS}" | tee -a ${GITHUB_OUTPUT}
|
|
echo "image-tag=${IMAGE_TAG}" | tee -a ${GITHUB_OUTPUT}
|
|
|
|
- name: Set more variables
|
|
id: set-more-variables
|
|
env:
|
|
IMAGE_TAG: ${{ steps.set-variables.outputs.image-tag }}
|
|
EVERYTHING: |
|
|
${{ contains(fromJSON(steps.set-variables.outputs.archs), 'x64') &&
|
|
contains(fromJSON(steps.set-variables.outputs.archs), 'arm64') &&
|
|
contains(fromJSON(steps.set-variables.outputs.debians), 'bullseye') &&
|
|
contains(fromJSON(steps.set-variables.outputs.debians), 'bookworm') }}
|
|
run: |
|
|
if docker manifest inspect ghcr.io/neondatabase/build-tools:${IMAGE_TAG}; then
|
|
found=true
|
|
else
|
|
found=false
|
|
fi
|
|
|
|
echo "everything=${EVERYTHING}" | tee -a ${GITHUB_OUTPUT}
|
|
echo "found=${found}" | tee -a ${GITHUB_OUTPUT}
|
|
|
|
build-image:
|
|
needs: [ check-image ]
|
|
if: needs.check-image.outputs.found == 'false'
|
|
|
|
strategy:
|
|
matrix:
|
|
arch: ${{ fromJSON(needs.check-image.outputs.archs) }}
|
|
debian: ${{ fromJSON(needs.check-image.outputs.debians) }}
|
|
|
|
permissions:
|
|
packages: write
|
|
|
|
runs-on: ${{ fromJSON(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}
|
|
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
|
|
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
|
|
with:
|
|
cache-binary: false
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
username: ${{ secrets.NEON_DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.NEON_DOCKERHUB_PASSWORD }}
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
registry: cache.neon.build
|
|
username: ${{ secrets.NEON_CI_DOCKERCACHE_USERNAME }}
|
|
password: ${{ secrets.NEON_CI_DOCKERCACHE_PASSWORD }}
|
|
|
|
- uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
|
|
with:
|
|
file: build-tools/Dockerfile
|
|
context: .
|
|
provenance: false
|
|
push: true
|
|
pull: true
|
|
build-args: |
|
|
DEBIAN_VERSION=${{ matrix.debian }}
|
|
cache-from: type=registry,ref=cache.neon.build/build-tools:cache-${{ matrix.debian }}-${{ matrix.arch }}
|
|
cache-to: ${{ github.ref_name == 'main' && format('type=registry,ref=cache.neon.build/build-tools:cache-{0}-{1},mode=max', matrix.debian, matrix.arch) || '' }}
|
|
tags: |
|
|
ghcr.io/neondatabase/build-tools:${{ needs.check-image.outputs.tag }}-${{ matrix.debian }}-${{ matrix.arch }}
|
|
|
|
merge-images:
|
|
needs: [ check-image, build-image ]
|
|
runs-on: ubuntu-22.04
|
|
|
|
permissions:
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
username: ${{ secrets.NEON_DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.NEON_DOCKERHUB_PASSWORD }}
|
|
|
|
- uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Create multi-arch image
|
|
env:
|
|
DEFAULT_DEBIAN_VERSION: bookworm
|
|
ARCHS: ${{ join(fromJSON(needs.check-image.outputs.archs), ' ') }}
|
|
DEBIANS: ${{ join(fromJSON(needs.check-image.outputs.debians), ' ') }}
|
|
EVERYTHING: ${{ needs.check-image.outputs.everything }}
|
|
IMAGE_TAG: ${{ needs.check-image.outputs.tag }}
|
|
run: |
|
|
for debian in ${DEBIANS}; do
|
|
tags=("-t" "ghcr.io/neondatabase/build-tools:${IMAGE_TAG}-${debian}")
|
|
|
|
if [ "${EVERYTHING}" == "true" ] && [ "${debian}" == "${DEFAULT_DEBIAN_VERSION}" ]; then
|
|
tags+=("-t" "ghcr.io/neondatabase/build-tools:${IMAGE_TAG}")
|
|
fi
|
|
|
|
for arch in ${ARCHS}; do
|
|
tags+=("ghcr.io/neondatabase/build-tools:${IMAGE_TAG}-${debian}-${arch}")
|
|
done
|
|
|
|
docker buildx imagetools create "${tags[@]}"
|
|
done
|