File tree Expand file tree Collapse file tree 4 files changed +13
-11
lines changed
Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ GOBIN ?= $$(go env GOPATH)/bin
1717# | OS_RELEASE | OS_VERSION | NOTES |
1818# | ---------------- | ----------------------------------------- | -------------------------------------------------------------- |
1919# | amazonlinux | 2, 2023 | |
20- # | ubuntu | 22.04, 24.04 25.04 | |
20+ # | ubuntu | 22.04, 24.04, 25.04 25.10 | |
2121# | debian | bullseye-slim, bookworm-slim, trixie-slim | |
2222# | redhatenterprise | 8, 9, 10 | |
2323# | rockylinux | 8, 9, 10 | |
2424# | almalinux | 8, 9, 10 | |
25- # | alpine | 3.19, 3. 20, 3.21 3.22 | |
25+ # | alpine | 3.20, 3.21 3.22 | |
2626# | oraclelinux | 8, 9, 10 | |
27- # | suse | sle15 | |
27+ # | suse | sle15, sle16 | |
2828# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
2929OS_RELEASE ?= ubuntu
3030OS_VERSION ?= 24.04
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ PACKAGE_BUILD ?= 1
1212PACKAGE_VERSION ?= $(shell echo ${VERSION} | tr -d 'v')
1313TARBALL_NAME := $(PACKAGE_PREFIX ) .tar.gz
1414
15- DEB_DISTROS ?= ubuntu-plucky-25.04 ubuntu-noble-24.04 ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-trixie-13 debian-bookworm-12 debian-bullseye-11
15+ DEB_DISTROS ?= ubuntu-questing-25.10 ubuntu- plucky-25.04 ubuntu-noble-24.04 ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-trixie-13 debian-bookworm-12 debian-bullseye-11
1616DEB_ARCHS ?= arm64 amd64
17- RPM_DISTROS ?= suse-15-x86_64
17+ RPM_DISTROS ?= suse-15-x86_64 suse-16-x86_64
1818RPM_ARCH := x86_64
1919REDHAT_VERSIONS ?= redhatenterprise-8 redhatenterprise-9 redhatenterprise-10
2020REDHAT_ARCHS ?= aarch64 x86_64
21- APK_VERSIONS ?= 3.18 3.19 3. 20 3.21 3.22
21+ APK_VERSIONS ?= 3.20 3.21 3.22
2222APK_ARCHS ?= aarch64 x86_64
2323APK_REVISION ?= 1
2424AMAZON_VERSIONS ?= amazon-2 amazon-2023
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/nginx/agent/v3
22
33go 1.24.2
44
5- toolchain go1.24.10
5+ toolchain go1.24.11
66
77require (
88 buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.9-20250912141014-52f32327d4b0.1
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ majorVersion=$(echo ${VERSION} | cut -d. -f1)
6262# Define package URIs to check for each platform
6363
6464APK=()
65- ALPINE_VERSIONS=(" 3.22" " 3.21" " 3.20" " 3.19 " )
65+ ALPINE_VERSIONS=(" 3.22" " 3.21" " 3.20" )
6666ALPINE_ARCH=(" x86_64" " aarch64" )
6767for alpine_version in " ${ALPINE_VERSIONS[@]} " ; do
6868 for arch in ${ALPINE_ARCH[@]} ; do
@@ -102,9 +102,11 @@ for arch in ${RPM_ARCH[@]}; do
102102 AMZN+=(" amzn2/2/${arch} /RPMS/nginx-agent-$VERSION .amzn2.ngx.${arch} .rpm" )
103103done
104104
105- SUSE=(
106- sles/15/x86_64/RPMS/nginx-agent-$VERSION .sles15.ngx.x86_64.rpm
107- )
105+ SUSE=()
106+ SUSE_VERSIONS=(" 15" , " 16" )
107+ for suse_version in " ${SUSE_VERSIONS[@]} " ; do
108+ SUSE+=(" sles/${suse_version} /x86_64/RPMS/nginx-agent-$VERSION .sles${suse_version} .ngx.x86_64.rpm" )
109+ done
108110
109111# Aggregate all URIs to fetch
110112uris=(
You can’t perform that action at this time.
0 commit comments