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-05-12 05:39:39 +00:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
2021-05-12 05:39:32 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.1.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2021-05-12 05:39:27 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.3.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
2021-05-12 05:39:42 +00:00
|
|
|
uses: docker/login-action@v1.9.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
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-05-12 05:39:39 +00:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
2021-05-12 05:39:32 +00:00
|
|
|
uses: docker/setup-qemu-action@v1.1.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2021-05-12 05:39:27 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.3.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
2021-05-12 05:39:42 +00:00
|
|
|
uses: docker/login-action@v1.9.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile.openj9
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: true
|
|
|
|
tags: 1337kavin/piped:latest,1337kavin/piped:openj9
|