From e7165374f2424aa8bcd81511264b524ee4b4ab0d Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 9 Sep 2026 15:33:29 +1000 Subject: [PATCH] Support resolute (Ubuntu 26.04) --- scripts/package.sh | 1 + scripts/publish.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/package.sh b/scripts/package.sh index b13d609..ec0faaa 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -11,6 +11,7 @@ PHPS="${PHPS:-"7.4 8.0 8.1 8.2 8.3 8.4 8.5"}" BASE_MATRIX=( "debian:13|trixie" "debian:12|bookworm" + "ubuntu:26.04|resolute" "ubuntu:24.04|noble" "ubuntu:22.04|jammy" ) diff --git a/scripts/publish.sh b/scripts/publish.sh index ad2c4b1..7e29969 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -4,7 +4,7 @@ set -eoux pipefail OUT_DIR="${OUT_DIR:-"$(cd "$(dirname "$0")/.."; pwd)/build"}" -for CODENAME in trixie bookworm noble jammy; do +for CODENAME in trixie bookworm resolute noble jammy; do # feed all .deb for that codename into the repo if compgen -G "${OUT_DIR}/${CODENAME}/php*/*.deb" >/dev/null 2>&1; then find "${OUT_DIR}/${CODENAME}" -name '*.deb' -print0 \