2021-01-05 05:26:43 +00:00
|
|
|
name: Docker Multi-Architecture Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
2021-02-09 10:16:22 +00:00
|
|
|
build-docker-hotspot:
|
2021-01-05 05:26:43 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-11-03 13:05:26 +00:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
2021-05-27 06:07:55 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2021-09-06 13:05:10 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.6.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
2021-12-20 13:06:41 +00:00
|
|
|
uses: docker/login-action@v1.11.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2021-08-20 13:04:16 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
2021-02-09 10:16:22 +00:00
|
|
|
tags: 1337kavin/piped:hotspot
|
|
|
|
build-docker-openj9:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-11-03 13:05:26 +00:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
2021-05-27 06:07:55 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2021-09-06 13:05:10 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.6.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
2021-12-20 13:06:41 +00:00
|
|
|
uses: docker/login-action@v1.11.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2021-08-20 13:04:16 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile.openj9
|
2021-11-08 20:55:08 +00:00
|
|
|
platforms: linux/amd64
|
2021-02-09 10:16:22 +00:00
|
|
|
push: true
|
|
|
|
tags: 1337kavin/piped:latest,1337kavin/piped:openj9
|