Skip to content

(#2265) Build packages for Debian 13 (trixie) #2266

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
54 changes: 53 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
- '*'

jobs:
# RedHat

el8_64:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -45,6 +47,8 @@ jobs:
packager_tag: el9-go1.24
version: tag

# Debian

bookworm_64:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -125,6 +129,48 @@ jobs:
packager_tag: bullseye-go1.24
version: tag

trixie_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: trixie_64
packager_tag: trixie-go1.24
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

first need to make the packager stuff in choria-io/packager

Copy link
Member Author

@smortex smortex Aug 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct, I opened a PR here: choria-io/packager#108

There is a lot of moving parts 😄

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are any of these Debian releases now unsupported? Can we remove some?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not yet: bullseye is supported until August 2026, bookworm until June 2028.

version: tag

trixie_aarch64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: trixie_aarch64
packager_tag: trixie-go1.24
version: tag

trixie_armel:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: trixie_armel
packager_tag: trixie-go1.24
version: tag

trixie_armhf:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: trixie_armhf
packager_tag: trixie-go1.24
version: tag

# Ubuntu

bionic_64:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -205,6 +251,8 @@ jobs:
packager_tag: noble-go1.24
version: tag

# Windows

windows_64:
runs-on: ubuntu-latest
steps:
Expand All @@ -227,6 +275,10 @@ jobs:
- bookworm_aarch64
- bookworm_armel
- bookworm_armhf
- trixie_64
- trixie_aarch64
- trixie_armel
- trixie_armhf
- el8_64
- el8_ppc64le
- el9_64
Expand Down Expand Up @@ -264,4 +316,4 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_ACCESS_KEY }}
SOURCE_DIR: artifacts
DEST_DIR: release
DEST_DIR: release
24 changes: 24 additions & 0 deletions packager/buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,30 @@ foss:
binary: aarch64_linux
distro: bullseye

trixie_armel:
template: debian/generic
target_arch: arm-linux-gnueabi
binary: armv5_linux
distro: trixie

trixie_armhf:
template: debian/generic
target_arch: arm-linux-gnueabihf
binary: armv7_linux
distro: trixie

trixie_64:
template: debian/generic
target_arch: x86_64-linux-gnu
binary: 64bit_linux
distro: trixie

trixie_aarch64:
template: debian/generic
target_arch: aarch64-linux-gnu
binary: aarch64_linux
distro: trixie

windows_64:
name: Choria
display_name: Choria Orchestrator
Expand Down