Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Nov 29, 2024
2 parents 4317220 + 6f3e2ca commit 1ba8e34
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
include:
- core: ${{ needs.versions.outputs.coreversion }}
os: alpine
os_version: "3.19"
golang: golang:1.22-alpine3.19
os_version: "3.20"
golang: golang:1.23-alpine3.20
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
branch: main
latest: yes
- core: ${{ needs.versions.outputs.coreversion }}
os: ubuntu
os_version: "22.04"
golang: golang:1.22-alpine3.19
golang: golang:1.23-alpine3.20
platforms: linux/amd64
branch: main
latest: yes
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/build_base_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@ jobs:
matrix:
include:
- os: alpine
os_version: "3.19"
golang: golang:1.22-alpine3.19
os_version: "3.20"
golang: golang:1.23-alpine3.20
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
branch: dev
- os: ubuntu
os_version: "22.04"
golang: golang:1.22-alpine3.19
golang: golang:1.23-alpine3.20
platforms: linux/amd64
branch: dev
- os: ubuntu
os_version: "24.04"
golang: golang:1.23-alpine3.20
platforms: linux/amd64
branch: dev

Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/build_base_vod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ jobs:
matrix:
include:
- os: alpine
os_version: "3.19"
golang: golang:1.22-alpine3.19
os_version: "3.20"
golang: golang:1.23-alpine3.20
platforms: linux/amd64,linux/arm64,linux/arm/v7
branch: vod
key: alpine3.19
- os: ubuntu
os_version: "24.04"
golang: golang:1.23-alpine3.20
platforms: linux/amd64
branch: vod

steps:
- name: Checkout
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ jobs:
matrix:
include:
- core: ${{ needs.versions.outputs.coreversion }}
core_os: alpine3.19
core_os: alpine3.20
ffmpeg: "6.1.1"
ffmpeg_os: alpine3.19
ffmpeg_os: alpine3.20
platforms: linux/amd64,linux/arm64,linux/arm/v7
branch: main
prefix:
latest: yes
- core: ${{ needs.versions.outputs.coreversion }}
core_os: alpine3.19
core_os: alpine3.20
ffmpeg: "6.1.1-rpi"
ffmpeg_os: alpine3.19
ffmpeg_os: alpine3.20
platforms: linux/arm64,linux/arm/v7
branch: main
prefix: rpi-
Expand Down
22 changes: 15 additions & 7 deletions .github/workflows/build_bundle_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,39 @@ jobs:
strategy:
matrix:
include:
- core_os: alpine3.19
- core_os: alpine3.20
ffmpeg: "6.1.1"
ffmpeg_os: alpine3.19
ffmpeg_os: alpine3.20
platforms: linux/amd64,linux/arm64,linux/arm/v7
branch: dev
prefix:
latest: yes
- core_os: alpine3.19
- core_os: alpine3.20
ffmpeg: "6.1.1-rpi"
ffmpeg_os: alpine3.19
ffmpeg_os: alpine3.20
platforms: linux/arm64,linux/arm/v7
branch: dev
prefix: rpi-
latest: yes
- core_os: ubuntu22.04
- core_os: ubuntu24.04
ffmpeg: "6.1.1-vaapi"
ffmpeg_os: ubuntu22.04
ffmpeg_os: ubuntu24.04
platforms: linux/amd64
branch: dev
prefix: vaapi-
latest: yes
- core_os: ubuntu22.04
ffmpeg: "6.1.1-cuda"
ffmpeg_os: ubuntu22.04
ffmpeg_tags: "-cuda11.7.1"
ffmpeg_tags: "-cuda11.8.0"
platforms: linux/amd64
branch: dev
prefix: cuda-
latest: no
- core_os: ubuntu24.04
ffmpeg: "6.1.1-cuda"
ffmpeg_os: ubuntu24.04
ffmpeg_tags: "-cuda12.6.1"
platforms: linux/amd64
branch: dev
prefix: cuda-
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BUILD_IMAGE=alpine:3.19

# Cross-Compilation
# https://www.docker.com/blog/faster-multi-platform-builds-dockerfile-cross-compilation-guide/
FROM --platform=$BUILDPLATFORM $GOLANG_IMAGE as builder
FROM --platform=$BUILDPLATFORM $GOLANG_IMAGE AS builder

ARG TARGETOS TARGETARCH TARGETVARIANT
ENV GOOS=$TARGETOS GOARCH=$TARGETARCH GOARM=$TARGETVARIANT
Expand Down

0 comments on commit 1ba8e34

Please sign in to comment.