Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 20 additions & 47 deletions .github/workflows/release-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,11 @@ jobs:
strategy:
matrix:
include:
- distro: "debian"
release: "buster"
arch: "amd64"
- distro: "debian"
release: "bullseye"
arch: "amd64"
- distro: "debian"
release: "bookworm"
arch: "amd64"
- distro: "ubuntu"
release: "focal"
- distro: "debian"
release: "trixie"
arch: "amd64"
- distro: "ubuntu"
release: "jammy"
Expand Down Expand Up @@ -74,22 +68,6 @@ jobs:
strategy:
matrix:
include:
- distro: "debian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "debian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
- distro: "debian"
release: "bookworm"
image: "bookworm"
Expand All @@ -98,14 +76,16 @@ jobs:
release: "bookworm"
image: "bookworm"
arch: "aarch64"
- distro: "ubuntu"
release: "focal"
image: "ubuntu20.04"
arch: "armv7"
- distro: "ubuntu"
release: "focal"
image: "ubuntu20.04"
arch: "aarch64"
- distro: "debian"
release: "trixie"
image: "none"
arch: "none"
base_image: --platform=linux/arm/v7 arm32v7/debian:trixie
- distro: "debian"
release: "trixie"
image: "none"
arch: "none"
base_image: --platform=linux/arm64 arm64v8/debian:trixie
- distro: "ubuntu"
release: "jammy"
image: "ubuntu22.04"
Expand All @@ -114,31 +94,24 @@ jobs:
release: "jammy"
image: "ubuntu22.04"
arch: "aarch64"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
- distro: "ubuntu"
release: "noble"
image: "ubuntu24.04"
arch: "armv7"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
- distro: "ubuntu"
release: "noble"
image: "ubuntu24.04"
arch: "aarch64"
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.8.1
- uses: uraimo/run-on-arch-action@v3
name: Build artifact
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.image }}
base_image: ${{ matrix.base_image }}
shell: /bin/bash
install: |
apt-get update
Expand Down
67 changes: 20 additions & 47 deletions .github/workflows/test-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,11 @@ jobs:
strategy:
matrix:
include:
- distro: "debian"
release: "buster"
arch: "amd64"
- distro: "debian"
release: "bullseye"
arch: "amd64"
- distro: "debian"
release: "bookworm"
arch: "amd64"
- distro: "ubuntu"
release: "focal"
- distro: "debian"
release: "trixie"
arch: "amd64"
- distro: "ubuntu"
release: "jammy"
Expand Down Expand Up @@ -56,22 +50,6 @@ jobs:
strategy:
matrix:
include:
- distro: "debian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "debian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "armv7"
- distro: "debian"
release: "bullseye"
image: "bullseye"
arch: "aarch64"
- distro: "debian"
release: "bookworm"
image: "bookworm"
Expand All @@ -80,14 +58,16 @@ jobs:
release: "bookworm"
image: "bookworm"
arch: "aarch64"
- distro: "ubuntu"
release: "focal"
image: "ubuntu20.04"
arch: "armv7"
- distro: "ubuntu"
release: "focal"
image: "ubuntu20.04"
arch: "aarch64"
- distro: "debian"
release: "trixie"
image: "none"
arch: "none"
base_image: --platform=linux/arm/v7 arm32v7/debian:trixie
- distro: "debian"
release: "trixie"
image: "none"
arch: "none"
base_image: --platform=linux/arm64 arm64v8/debian:trixie
- distro: "ubuntu"
release: "jammy"
image: "ubuntu22.04"
Expand All @@ -96,31 +76,24 @@ jobs:
release: "jammy"
image: "ubuntu22.04"
arch: "aarch64"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "armv7"
- distro: "raspbian"
release: "buster"
image: "buster"
arch: "aarch64"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
- distro: "ubuntu"
release: "noble"
image: "ubuntu24.04"
arch: "armv7"
- distro: "raspbian"
release: "bullseye"
image: "bullseye"
- distro: "ubuntu"
release: "noble"
image: "ubuntu24.04"
arch: "aarch64"
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.8.1
- uses: uraimo/run-on-arch-action@v3
name: Build artifact
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.image }}
base_image: ${{ matrix.base_image }}
shell: /bin/bash
install: |
apt-get update
Expand Down