build ARM-compatible images
This commit is contained in:
committed by
Jens Kristian Villadsen
parent
73d01ab408
commit
79fddf8309
43
.github/workflows/build-images.yaml
vendored
43
.github/workflows/build-images.yaml
vendored
@@ -7,6 +7,10 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGES: docker.io/hapiproject/hapi
|
||||||
|
PLATFORMS: linux/amd64,linux/arm64/v8
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
@@ -14,32 +18,37 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: docker_meta
|
id: docker_meta
|
||||||
uses: crazy-max/ghaction-docker-meta@v1
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
images: |
|
images: ${{ env.IMAGES }}
|
||||||
docker.io/hapiproject/hapi
|
tags: |
|
||||||
tag-sha: false
|
type=match,pattern=image-(.*),group=1,enable=${{github.event_name != 'pull_request'}}
|
||||||
tag-match: "v(.*)"
|
type=sha
|
||||||
# waiting for https://github.com/crazy-max/ghaction-docker-meta/issues/13 for a cleaner solution
|
|
||||||
- name: Docker distroless meta
|
- name: Docker distroless meta
|
||||||
id: docker_distroless_meta
|
id: docker_distroless_meta
|
||||||
uses: crazy-max/ghaction-docker-meta@v1
|
uses: docker/metadata-action@v3
|
||||||
with:
|
with:
|
||||||
images: |
|
images: ${{ env.IMAGES }}
|
||||||
docker.io/hapiproject/hapi
|
tags: |
|
||||||
tag-sha: false
|
type=match,pattern=image-(.*),group=1,enable=${{github.event_name != 'pull_request'}}
|
||||||
tag-match: "v(.*)"
|
type=sha
|
||||||
sep-tags: -distroless,
|
flavor: |
|
||||||
|
suffix=-distroless,onlatest=true
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Cache Docker layers
|
- name: Cache Docker layers
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
@@ -47,6 +56,7 @@ jobs:
|
|||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-buildx-
|
${{ runner.os }}-buildx-
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
@@ -56,6 +66,8 @@ jobs:
|
|||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.docker_meta.outputs.tags }}
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
||||||
labels: ${{ steps.docker_meta.outputs.labels }}
|
labels: ${{ steps.docker_meta.outputs.labels }}
|
||||||
|
platforms: ${{ env.PLATFORMS }}
|
||||||
|
|
||||||
- name: Build and push distroless
|
- name: Build and push distroless
|
||||||
id: docker_build_distroless
|
id: docker_build_distroless
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
@@ -63,10 +75,7 @@ jobs:
|
|||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: type=local,src=/tmp/.buildx-cache
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.docker_distroless_meta.outputs.tags }}-distroless
|
tags: ${{ steps.docker_distroless_meta.outputs.tags }}
|
||||||
labels: ${{ steps.docker_distroless_meta.outputs.labels }}
|
labels: ${{ steps.docker_distroless_meta.outputs.labels }}
|
||||||
|
platforms: ${{ env.PLATFORMS }}
|
||||||
target: release-distroless
|
target: release-distroless
|
||||||
- name: Print image digests
|
|
||||||
run: |
|
|
||||||
echo ${{ steps.docker_build.outputs.digest }}
|
|
||||||
echo ${{ steps.docker_build_distroless.outputs.digest }}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user