Skip to content

Commit e951ca1

Browse files
authored
[V3] Update Supported OS (#1427)
* update tool chain version and supported OS * update tool chain version and supported OS
1 parent e2ad230 commit e951ca1

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
2929
OS_RELEASE ?= ubuntu
3030
OS_VERSION ?= 24.04

Makefile.packaging

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ PACKAGE_BUILD ?= 1
1212
PACKAGE_VERSION ?= $(shell echo ${VERSION} | tr -d 'v')
1313
TARBALL_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
1616
DEB_ARCHS ?= arm64 amd64
17-
RPM_DISTROS ?= suse-15-x86_64
17+
RPM_DISTROS ?= suse-15-x86_64 suse-16-x86_64
1818
RPM_ARCH := x86_64
1919
REDHAT_VERSIONS ?= redhatenterprise-8 redhatenterprise-9 redhatenterprise-10
2020
REDHAT_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
2222
APK_ARCHS ?= aarch64 x86_64
2323
APK_REVISION ?= 1
2424
AMAZON_VERSIONS ?= amazon-2 amazon-2023

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/nginx/agent/v3
22

33
go 1.24.2
44

5-
toolchain go1.24.10
5+
toolchain go1.24.11
66

77
require (
88
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.9-20250912141014-52f32327d4b0.1

scripts/packages/package-check.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ majorVersion=$(echo ${VERSION} | cut -d. -f1)
6262
# Define package URIs to check for each platform
6363

6464
APK=()
65-
ALPINE_VERSIONS=("3.22" "3.21" "3.20" "3.19")
65+
ALPINE_VERSIONS=("3.22" "3.21" "3.20")
6666
ALPINE_ARCH=("x86_64" "aarch64")
6767
for 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")
103103
done
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
110112
uris=(

0 commit comments

Comments
 (0)