2021-02-06 20:52:20 +00:00
|
|
|
name: Build and publish multiarch
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-05-21 12:46:49 +00:00
|
|
|
- master
|
2021-10-22 21:06:42 +00:00
|
|
|
- java8-multiarch
|
2021-05-22 03:34:45 +00:00
|
|
|
- java8-openj9
|
|
|
|
- java11*
|
2021-05-21 21:45:33 +00:00
|
|
|
- java16*
|
2021-10-20 02:36:31 +00:00
|
|
|
- java17*
|
2021-09-16 02:27:48 +00:00
|
|
|
- test/*
|
2021-12-10 16:40:56 +00:00
|
|
|
- fix/*
|
2021-02-06 20:52:20 +00:00
|
|
|
tags:
|
2021-05-21 12:39:59 +00:00
|
|
|
- "[0-9]+.[0-9]+.[0-9]+"
|
2021-10-22 21:06:42 +00:00
|
|
|
- "[0-9]+.[0-9]+.[0-9]+-java8-multiarch"
|
2021-05-22 03:34:45 +00:00
|
|
|
- "[0-9]+.[0-9]+.[0-9]+-java8-openj9"
|
|
|
|
- "[0-9]+.[0-9]+.[0-9]+-java11*"
|
2021-05-21 21:45:33 +00:00
|
|
|
- "[0-9]+.[0-9]+.[0-9]+-java16*"
|
2021-05-01 22:39:35 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
2021-05-02 23:31:08 +00:00
|
|
|
- "docs/**"
|
|
|
|
- "examples/**"
|
2021-02-06 20:52:20 +00:00
|
|
|
|
2021-12-05 00:42:03 +00:00
|
|
|
env:
|
|
|
|
IMAGE_TO_TEST: itzg/minecraft-server:test-${{ github.repository_owner }}-${{ github.run_id }}
|
|
|
|
|
2021-02-06 20:52:20 +00:00
|
|
|
jobs:
|
2021-12-05 00:42:03 +00:00
|
|
|
build:
|
2021-06-24 02:20:37 +00:00
|
|
|
if: github.repository == 'itzg/docker-minecraft-server'
|
2021-02-06 20:52:20 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2021-11-08 13:00:59 +00:00
|
|
|
uses: actions/checkout@v2.4.0
|
2021-02-06 20:52:20 +00:00
|
|
|
|
2021-05-14 22:48:17 +00:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
itzg/minecraft-server
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=tag
|
2021-05-22 04:00:27 +00:00
|
|
|
flavor: |
|
2021-07-03 19:16:10 +00:00
|
|
|
latest=${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
2021-02-06 20:52:20 +00:00
|
|
|
|
|
|
|
- name: Setup Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
2021-05-31 13:02:39 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-02-06 20:52:20 +00:00
|
|
|
|
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
2021-12-05 00:42:03 +00:00
|
|
|
- name: Build for test
|
|
|
|
uses: docker/build-push-action@v2.7.0
|
|
|
|
if: github.ref_name == 'master'
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64
|
|
|
|
tags: ${{ env.IMAGE_TO_TEST }}
|
|
|
|
# ensure latest base image is used
|
|
|
|
pull: true
|
|
|
|
load: true
|
|
|
|
push: false
|
|
|
|
cache-from: type=gha
|
2021-12-11 02:50:40 +00:00
|
|
|
# no cache-to to avoid cross-cache update from next build step
|
2021-12-05 00:42:03 +00:00
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
# It is assumed that image variants are merged from master and tested there
|
|
|
|
if: github.ref_name == 'master'
|
|
|
|
run: |
|
|
|
|
tests/test.sh
|
|
|
|
|
2021-02-06 20:52:20 +00:00
|
|
|
- name: Build and push
|
|
|
|
id: docker_build
|
2021-08-23 12:27:58 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-02-06 20:52:20 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
2021-05-14 22:48:17 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2021-02-09 03:27:25 +00:00
|
|
|
# ensure latest base image is used
|
|
|
|
pull: true
|
2021-12-05 00:42:03 +00:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
2021-05-14 22:48:17 +00:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2021-02-06 20:52:20 +00:00
|
|
|
|
|
|
|
- name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|