Skip to content

Commit 9540d85

Browse files
authored
Merge pull request #49 from aerospike/debian13
add debian 13 support
2 parents e96ae25 + d81184f commit 9540d85

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/deploy-artifacts/package_utils.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ get_codename_for_deb() {
5858
*ubuntu24.04*) echo "noble" ;;
5959
*debian11*) echo "bullseye" ;;
6060
*debian12*) echo "bookworm" ;;
61+
*debian13*) echo "trixie" ;;
6162
*) echo "distro $1 not supported" >&2 ; return 1 ;;
6263
esac
6364
}

.github/workflows/execute-build/test_apps/hi/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ DOCKER_IMAGE_noble = ubuntu:24.04
1515
DOCKER_IMAGE_focal = ubuntu:20.04
1616
DOCKER_IMAGE_bullseye = debian:11
1717
DOCKER_IMAGE_bookworm = debian:12
18+
DOCKER_IMAGE_trixie = debian:13
1819
DOCKER_IMAGE_el8 = rockylinux:8
1920
DOCKER_IMAGE_el9 = rockylinux:9
2021
DOCKER_IMAGE_amzn2023 = amazonlinux:2023

.github/workflows/execute-build/test_apps/hi/package.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ declare -A DISTRO_VERSIONS=(
9292
[focal]="ubuntu20.04"
9393
[bullseye]="debian11"
9494
[bookworm]="debian12"
95+
[trixie]="debian13"
9596
[el8]="el8"
9697
[el9]="el9"
9798
[amzn2023]="amzn2023"

0 commit comments

Comments
 (0)