Build and publish a 🛢️ container #69
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: Build and publish a 🛢️ container | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
setup-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Source checkout | |
uses: actions/checkout@v4 | |
- id: set-matrix | |
run: echo "matrix=$(jq -c . build_versions.json)" >> $GITHUB_OUTPUT | |
build-X86-container: | |
runs-on: macarne | |
permissions: | |
contents: read | |
packages: write | |
needs: setup-matrix | |
strategy: | |
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | |
steps: | |
- name: Build Vox Pupuli Test Box r${{ matrix.puppet_release }} | |
uses: voxpupuli/gha-build-and-publish-a-container@v2 | |
with: | |
registry_password: ${{ secrets.GITHUB_TOKEN }} | |
build_args: | | |
BASE_IMAGE=${{ matrix.base_image }} | |
RUBYGEM_PUPPET=${{ matrix.rubygem_puppet }} | |
RUBYGEM_FACTER=${{ matrix.rubygem_facter }} | |
RUBYGEM_VOXPUPULI_TEST=${{ matrix.rubygem_voxpupuli_test }} | |
RUBYGEM_VOXPUPULI_ACCEPTANCE=${{ matrix.rubygem_voxpupuli_acceptance }} | |
RUBYGEM_VOXPUPULI_RELEASE=${{ matrix.rubygem_voxpupuli_release }} | |
RUBYGEM_PUPPET_METADATA=${{ matrix.rubygem_puppet_metadata }} | |
RUBYGEM_MODULESYNC=${{ matrix.rubygem_modulesync }} | |
RUBYGEM_RUBOCOP_PERFORMANCE=${{ matrix.rubygem_rubocop_performance }} | |
RUBYGEM_BUNDLER=${{ matrix.rubygem_bundler }} | |
APK_JQ=${{ matrix.apk_jq }} | |
APK_YAMLLINT=${{ matrix.apk_yamllint }} | |
APK_GIT=${{ matrix.apk_git }} | |
APK_CURL=${{ matrix.apk_curl }} | |
build_arch: linux/amd64 | |
docker_username: voxpupulibot | |
docker_password: ${{ secrets.DOCKERHUB_BOT_PASSWORD }} | |
tags: | | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
build-ARM-container: | |
runs-on: hetzner-arm | |
permissions: | |
contents: read | |
packages: write | |
needs: setup-matrix | |
strategy: | |
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | |
steps: | |
- name: Build Vox Pupuli Test Box r${{ matrix.puppet_release }} | |
uses: voxpupuli/gha-build-and-publish-a-container@v2 | |
with: | |
registry_password: ${{ secrets.GITHUB_TOKEN }} | |
build_args: | | |
BASE_IMAGE=${{ matrix.base_image }} | |
RUBYGEM_PUPPET=${{ matrix.rubygem_puppet }} | |
RUBYGEM_FACTER=${{ matrix.facter_version }} | |
RUBYGEM_VOXPUPULI_TEST=${{ matrix.rubygem_voxpupuli_test }} | |
RUBYGEM_VOXPUPULI_ACCEPTANCE=${{ matrix.rubygem_voxpupuli_acceptance }} | |
RUBYGEM_VOXPUPULI_RELEASE=${{ matrix.rubygem_voxpupuli_release }} | |
RUBYGEM_PUPPET_METADATA=${{ matrix.rubygem_puppet_metadata }} | |
RUBYGEM_MODULESYNC=${{ matrix.rubygem_modulesync }} | |
RUBYGEM_RUBOCOP_PERFORMANCE=${{ matrix.rubygem_rubocop_performance }} | |
RUBYGEM_BUNDLER=${{ matrix.rubygem_bundler }} | |
APK_JQ=${{ matrix.apk_jq }} | |
APK_YAMLLINT=${{ matrix.apk_yamllint }} | |
APK_GIT=${{ matrix.apk_git }} | |
APK_CURL=${{ matrix.apk_curl }} | |
build_arch: linux/arm64 | |
docker_username: voxpupulibot | |
docker_password: ${{ secrets.DOCKERHUB_BOT_PASSWORD }} | |
tags: | | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 | |
create-multiarch-manifests: | |
runs-on: ubuntu-latest | |
needs: | |
- setup-matrix | |
- build-X86-container | |
- build-ARM-container | |
strategy: | |
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | |
steps: | |
- name: Log in to the ghcr.io registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log in to the docker.io registry | |
uses: docker/login-action@v3 | |
with: | |
registry: docker.io | |
username: voxpupulibot | |
password: ${{ secrets.DOCKERHUB_BOT_PASSWORD }} | |
- name: Create multiarch manifests | |
run: | | |
docker buildx imagetools create -t ghcr.io/voxpupuli/voxbox:${{ matrix.rubygem_puppet }}-${{ github.ref_name }} \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.ref_name }} \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }} \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t ghcr.io/voxpupuli/voxbox:latest \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
ghcr.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t docker.io/voxpupuli/voxbox:${{ matrix.rubygem_puppet }}-${{ github.ref_name }} \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.ref_name }} \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }} \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
docker buildx imagetools create -t docker.io/voxpupuli/voxbox:latest \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-arm64 \ | |
docker.io/voxpupuli/voxbox:${{ matrix.puppet_release }}-${{ github.sha }}-x86 | |
update-dockerhub-description: | |
runs-on: ubuntu-latest | |
needs: | |
- create-multiarch-manifests | |
steps: | |
- name: Source checkout | |
uses: actions/checkout@v4 | |
- name: Update Docker Hub Description | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: voxpupulibot | |
password: ${{ secrets.DOCKERHUB_BOT_PASSWORD }} | |
repository: voxpupuli/voxbox |