Skip to content

Commit

Permalink
update github workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
  • Loading branch information
mblaschke committed Nov 6, 2023
1 parent 132bc3f commit 4533011
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 193 deletions.
88 changes: 88 additions & 0 deletions .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: build/docker

on:
workflow_call:
inputs:
publish:
required: true
type: boolean

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Run Golangci lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --print-resources-usage

build:
name: "build ${{ matrix.Dockerfile }}:${{ matrix.target }}"
needs: lint
strategy:
fail-fast: false
matrix:
include:
- Dockerfile: Dockerfile
target: "final-static"
suffix: ""
latest: "auto"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }},quay.io/${{ github.repository }}
labels: |
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
flavor: |
latest=${{ matrix.latest }}
suffix=${{ matrix.suffix }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
if: ${{ inputs.publish }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to Quay
uses: docker/login-action@v3
if: ${{ inputs.publish }}
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}

- name: ${{ inputs.publish && 'Build and push' || 'Build' }}
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.Dockerfile }}
target: ${{ matrix.target }}
platforms: linux/amd64,linux/arm64
push: ${{ inputs.publish }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
42 changes: 4 additions & 38 deletions .github/workflows/ci-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,7 @@ on: [pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Run Golangci lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --print-resources-usage

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }},quay.io/${{ github.repository }}
labels: |
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: false
platforms: linux/amd64,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
uses: ./.github/workflows/build-docker.yaml
secrets: inherit
with:
publish: false
82 changes: 5 additions & 77 deletions .github/workflows/release-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,80 +10,8 @@ on:
- '*.*.*'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Run Golangci lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --print-resources-usage

build:
name: "build ${{ matrix.Dockerfile }}:${{ matrix.target }}"
needs: lint
strategy:
fail-fast: false
matrix:
include:
-
Dockerfile: Dockerfile
target: "final-static"
suffix: ""
latest: "auto"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }},quay.io/${{ github.repository }}
labels: |
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
flavor: |
latest=${{ matrix.latest }}
suffix=${{ matrix.suffix }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to Quay
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.Dockerfile }}
target: ${{ matrix.target }}
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
release:
uses: ./.github/workflows/build-docker.yaml
secrets: inherit
with:
publish: ${{ github.event_name != 'pull_request' }}
84 changes: 6 additions & 78 deletions .github/workflows/schedule-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,83 +2,11 @@ name: "schedule/docker"

on:
schedule:
- cron: '0 6 * * 1'
- cron: '45 6 * * 1'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Run Golangci lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --print-resources-usage

build:
name: "build ${{ matrix.Dockerfile }}:${{ matrix.target }}"
needs: lint
strategy:
fail-fast: false
matrix:
include:
-
Dockerfile: Dockerfile
target: "final-static"
suffix: ""
latest: "auto"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
with:
swap-size-gb: 12

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ github.repository }},quay.io/${{ github.repository }}
labels: |
io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/${{ github.event.repository.default_branch }}/README.md
flavor: |
latest=${{ matrix.latest }}
suffix=${{ matrix.suffix }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to Quay
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.Dockerfile }}
target: ${{ matrix.target }}
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
schedule:
uses: ./.github/workflows/build-docker.yaml
secrets: inherit
with:
publish: true

0 comments on commit 4533011

Please sign in to comment.