Skip to content

Commit

Permalink
[CI] Build PR images on GHCR (#3445)
Browse files Browse the repository at this point in the history
* Upgrade CI

* Tmp Test

* Test tmp

* Test master

* Distinct cache by branch

* Correct version name

* Dynamic dockerhub push

* correct cache name

---------

Co-authored-by: Julien <[email protected]>
  • Loading branch information
jlestel and Julien committed Nov 21, 2023
1 parent d095ca6 commit eadf082
Show file tree
Hide file tree
Showing 7 changed files with 313 additions and 88 deletions.
78 changes: 78 additions & 0 deletions .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: "Build"
description: "Build images"
inputs:
is_dockerhub_pushed:
description: "Need docker hub login?"
required: true
default: ''
docker_password:
description: "Docker password"
required: true
repository_owner:
description: "Repository owner"
required: true
default: "teslamate-org"
repository:
description: "Repo owner and name (repo_owner/repo_name)"
required: true
default: "teslamate"
github_token:
description: "GitHub Token"
required: true
labels:
description: "Labels added on metadata"
required: false
default: ""
version:
description: "Branch deployed"
required: false
default: ""
runs:
using: "composite"
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}
labels: |
{{ inputs.labels }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: inputs.is_dockerhub_pushed != ''
uses: docker/[email protected]
with:
username: teslamate
password: ${{ inputs.docker_password }}
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ inputs.repository_owner }}
password: ${{ inputs.github_token }}
- name: Build and push by digest
id: build
uses: docker/[email protected]
with:
context: .
platforms: ${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.docker_meta.outputs.tags }}
cache-from: type=registry,ref=ghcr.io/${{ inputs.repository }}:buildcache-${{ matrix.cache_id }}-${{ inputs.version }}
cache-to: type=registry,ref=ghcr.io/${{ inputs.repository }}:buildcache-${{ matrix.cache_id }}-${{ inputs.version }},mode=max
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest
shell: bash
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
ls -l /tmp/digests/
- name: Upload digest
uses: actions/upload-artifact@v3
with:
name: digests
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
37 changes: 37 additions & 0 deletions .github/actions/grafana/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Grafana"
description: "Grafana images"
inputs:
tags:
description: "Tags"
required: false
default: ""
labels:
description: "Labels"
required: true
image:
description: "Image target"
required: true
default: "teslamate/grafana"
runs:
using: "composite"
steps:
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ${{ inputs.image }}
tags: ${{ inputs.tags }}
labels: ${{ inputs.labels }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/[email protected]
with:
context: grafana
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
40 changes: 40 additions & 0 deletions .github/actions/merge/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: "Merge"
description: "Merge images"
inputs:
tags:
description: "Tags"
required: false
default: ""
image:
description: "Image target"
required: true

runs:
using: "composite"
steps:
- name: Download digests
uses: actions/download-artifact@v3
with:
name: digests
path: /tmp/digests

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

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ inputs.image }}
tags: ${{ inputs.tags }}

- name: Create manifest list and push
working-directory: /tmp/digests
shell: bash
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
shell: bash
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
108 changes: 22 additions & 86 deletions .github/workflows/buildx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,118 +31,54 @@ jobs:
cache_id: arm64

runs-on: ${{ matrix.runs_on }}
timeout-minutes: 10

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
- name: Buildx
uses: ./.github/actions/build
with:
images: ${{ env.REGISTRY_IMAGE }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: teslamate
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push by digest
id: build
uses: docker/[email protected]
with:
context: .
platforms: ${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.docker_meta.outputs.tags }}
cache-from: type=registry,ref=ghcr.io/teslamate-org/teslamate:buildcache-${{ matrix.cache_id }}
cache-to: type=registry,ref=ghcr.io/teslamate-org/teslamate:buildcache-${{ matrix.cache_id }},mode=max
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v3
with:
name: digests
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
is_dockerhub_pushed: '1'
docker_password: ${{ secrets.DOCKER_PASSWORD }}
repository_owner: ${{ github.repository_owner }}
repository: ${{ github.repository }}
github_token: ${{ secrets.GITHUB_TOKEN }}
version: ${{ github.ref_name }}

teslamate_merge:
runs-on: ubuntu-latest
needs:
- teslamate_build
steps:
- name: Download digests
uses: actions/download-artifact@v3
- name: Checkout
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/[email protected]
with:
name: digests
path: /tmp/digests
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
username: teslamate
password: ${{ secrets.DOCKER_PASSWORD }}

- uses: ./.github/actions/merge
with:
images: ${{ env.REGISTRY_IMAGE }}
image: ${{ env.REGISTRY_IMAGE }}
tags: |
type=schedule,pattern=edge
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=edge
- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: teslamate
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
grafana:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5

- uses: ./.github/actions/grafana
with:
images: teslamate/grafana
tags: |
type=edge
type=schedule,pattern=edge
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- 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/[email protected]
with:
username: teslamate
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/[email protected]
with:
context: grafana
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
10 changes: 8 additions & 2 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ name: Elixir CI

on:
push:
paths:
- "**/*"
- "!.github/**" # Important: Exclude PRs related to .github from auto-run
pull_request:
branches: [ "master" ]
branches: ["master"]
paths:
- "**/*"
- "!.github/**" # Important: Exclude PRs related to .github from auto-run

jobs:
lint:
Expand Down Expand Up @@ -124,7 +130,7 @@ jobs:
services:
db:
image: postgres:15
ports: [ "5432:5432" ]
ports: ["5432:5432"]
env:
POSTGRES_PASSWORD: postgres
options: >-
Expand Down
Loading

0 comments on commit eadf082

Please sign in to comment.