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
|
2022-02-22 09:16:45 +00:00
|
|
|
- name: Create Version File
|
|
|
|
run: echo $(git log -1 --date=short --pretty=format:%cd)-$(git rev-parse --short HEAD) > VERSION
|
2021-01-05 05:26:43 +00:00
|
|
|
- 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
|
2022-02-28 13:07:37 +00:00
|
|
|
uses: docker/login-action@v1.14.0
|
2021-01-05 05:26:43 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2022-02-01 13:06:55 +00:00
|
|
|
uses: docker/build-push-action@v2.9.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
|
2022-02-22 09:37:11 +00:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
2021-02-09 10:16:22 +00:00
|
|
|
build-docker-openj9:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-11-03 13:05:26 +00:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2022-02-22 09:16:45 +00:00
|
|
|
- name: Create Version File
|
|
|
|
run: echo $(git log -1 --date=short --pretty=format:%cd)-$(git rev-parse --short HEAD) > VERSION
|
2021-02-09 10:16:22 +00:00
|
|
|
- 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
|
2022-02-28 13:07:37 +00:00
|
|
|
uses: docker/login-action@v1.14.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2022-02-01 13:06:55 +00:00
|
|
|
uses: docker/build-push-action@v2.9.0
|
2021-02-09 10:16:22 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile.openj9
|
2021-12-24 13:51:48 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-02-09 10:16:22 +00:00
|
|
|
push: true
|
|
|
|
tags: 1337kavin/piped:latest,1337kavin/piped:openj9
|
2022-02-22 09:16:45 +00:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|