Skip to content

Remove all crossbuild stuff, we are building on target archs now #10

Remove all crossbuild stuff, we are building on target archs now

Remove all crossbuild stuff, we are building on target archs now #10

Workflow file for this run

name: Build
on:
push:
branches:
- 'test/*'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
- 'test-[a-zA-Z0-9]+'
env:
DOCKER_META_IMAGES: |
darthsim/imgproxy-base
DOCKER_META_TAGS: |
type=semver,pattern=v{{version}}
type=ref,event=branch,enable=${{ startsWith(github.ref, 'refs/heads/test/') }}
jobs:
build:
strategy:
matrix:
build:
- arch: amd64
dockerPlatform: linux/amd64
image: linux-5.0
- arch: arm64
dockerPlatform: linux/arm64/v8
image: arm-3.0
runs-on:
- codebuild-imgproxy-${{ github.run_id }}-${{ github.run_attempt }}
- image:${{ matrix.build.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_META_IMAGES }}
tags: ${{ env.DOCKER_META_TAGS }}
flavor: |
latest=auto
suffix=-${{ matrix.build.arch }},onlatest=true
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.build.dockerPlatform }}
provenance: false
push: true
push_manifests:
needs: build
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_META_IMAGES }}
tags: ${{ env.DOCKER_META_TAGS }}
flavor: |
latest=auto
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push manifests
run: |
for tag in ${{ join(fromJSON(steps.meta.outputs.json).tags, ' ') }}
do
docker buildx imagetools create -t $tag ${tag}-amd64 ${tag}-arm64
done