From ad2969120100dac4b4fc576bf049a3cfe7d7dc74 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Tue, 20 Feb 2024 14:40:49 +0100 Subject: [PATCH] Add matrix build for dev --- .github/workflows/build_base_matrix_dev.yaml | 83 ++++++++++++++++ .../workflows/build_bundle_matrix_dev.yaml | 99 +++++++++++++++++++ 2 files changed, 182 insertions(+) create mode 100644 .github/workflows/build_base_matrix_dev.yaml create mode 100644 .github/workflows/build_bundle_matrix_dev.yaml diff --git a/.github/workflows/build_base_matrix_dev.yaml b/.github/workflows/build_base_matrix_dev.yaml new file mode 100644 index 00000000..4a93cf0e --- /dev/null +++ b/.github/workflows/build_base_matrix_dev.yaml @@ -0,0 +1,83 @@ +name: "Build core base" + +on: + workflow_dispatch: + push: + branches: + - dev + +jobs: + docker: + runs-on: [self-hosted] + strategy: + matrix: + include: + - os: alpine + os_version: "3.19" + golang: golang:1.22-alpine3.19 + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 + branch: dev + - os: ubuntu + os_version: "20.04" + golang: golang:1.22-alpine3.19 + platforms: linux/amd64 + branch: dev + + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + ref: ${{ matrix.branch }} + + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: | + datarhei/base + tags: | + type=raw,value=core-${{ matrix.branch }}-${{ matrix.os }}${{ matrix.os_version }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@master + with: + platforms: all + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@master + + - name: Cache Docker layers + uses: actions/cache@v2 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + + - name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build Multi-Arch + uses: docker/build-push-action@v2 + with: + builder: ${{ steps.buildx.outputs.name }} + context: . + file: ./Dockerfile + build-args: | + BUILD_IMAGE=${{ matrix.os }}:${{ matrix.os_version }} + GOLANG_IMAGE=${{ matrix.golang }} + platforms: ${{ matrix.platforms }} + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new + + bundle: + uses: ./.github/workflows/build_bundle_matrix_dev.yaml + secrets: inherit diff --git a/.github/workflows/build_bundle_matrix_dev.yaml b/.github/workflows/build_bundle_matrix_dev.yaml new file mode 100644 index 00000000..e97028c3 --- /dev/null +++ b/.github/workflows/build_bundle_matrix_dev.yaml @@ -0,0 +1,99 @@ +name: "Build core dev bundles" + +on: + workflow_dispatch: + push: + branches-ignore: + - "**" + +jobs: + docker: + runs-on: [self-hosted] + strategy: + matrix: + include: + - core_os: alpine3.19 + ffmpeg: "6.1.1" + ffmpeg_os: alpine3.19 + platforms: linux/amd64,linux/arm64,linux/arm/v7 + branch: dev + prefix: + latest: yes + - core_os: alpine3.19 + ffmpeg: "6.1.1-rpi" + ffmpeg_os: alpine3.19 + platforms: linux/arm64,linux/arm/v7 + branch: dev + prefix: rpi- + latest: yes + - core_os: ubuntu20.04 + ffmpeg: "6.1.1-vaapi" + ffmpeg_os: ubuntu20.04 + platforms: linux/amd64 + branch: dev + prefix: vaapi- + latest: yes + - core_os: ubuntu20.04 + ffmpeg: "6.1.1-cuda" + ffmpeg_os: ubuntu20.04 + ffmpeg_tags: "-cuda11.7.1" + platforms: linux/amd64 + branch: dev + prefix: cuda- + latest: yes + + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + ref: ${{ matrix.branch }} + + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: | + datarhei/core + tags: | + type=raw,value=${{ matrix.branch }}-ffmpeg${{ matrix.ffmpeg }}${{ matrix.ffmpeg_tags }}-${{ matrix.core_os }} + # type=raw,value=${{ matrix.prefix }}${{ matrix.branch }},enable=${{ matrix.latest == 'yes' }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@master + with: + platforms: all + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@master + + - name: Cache Docker layers + uses: actions/cache@v2 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + + - name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build Multi-Arch + uses: docker/build-push-action@v2 + with: + builder: ${{ steps.buildx.outputs.name }} + context: . + file: ./Dockerfile.bundle + build-args: | + CORE_IMAGE=datarhei/base:core-${{ matrix.branch }}-${{ matrix.core_os }} + FFMPEG_IMAGE=datarhei/base:ffmpeg${{ matrix.ffmpeg }}-${{ matrix.ffmpeg_os}}${{ matrix.ffmpeg_tags }} + platforms: ${{ matrix.platforms }} + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new