Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ GOBIN ?= $$(go env GOPATH)/bin
# | OS_RELEASE | OS_VERSION | NOTES |
# | ---------------- | ----------------------------------------- | -------------------------------------------------------------- |
# | amazonlinux | 2, 2023 | |
# | ubuntu | 22.04, 24.04 25.04 | |
# | ubuntu | 22.04, 24.04, 25.04 25.10 | |
# | debian | bullseye-slim, bookworm-slim, trixie-slim | |
# | redhatenterprise | 8, 9, 10 | |
# | rockylinux | 8, 9, 10 | |
# | almalinux | 8, 9, 10 | |
# | alpine | 3.19, 3.20, 3.21 3.22 | |
# | alpine | 3.20, 3.21 3.22 | |
# | oraclelinux | 8, 9, 10 | |
# | suse | sle15 | |
# | suse | sle15, sle16 | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
OS_RELEASE ?= ubuntu
OS_VERSION ?= 24.04
Expand Down
6 changes: 3 additions & 3 deletions Makefile.packaging
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ PACKAGE_BUILD ?= 1
PACKAGE_VERSION ?= $(shell echo ${VERSION} | tr -d 'v')
TARBALL_NAME := $(PACKAGE_PREFIX).tar.gz

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
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
DEB_ARCHS ?= arm64 amd64
RPM_DISTROS ?= suse-15-x86_64
RPM_DISTROS ?= suse-15-x86_64 suse-16-x86_64
RPM_ARCH := x86_64
REDHAT_VERSIONS ?= redhatenterprise-8 redhatenterprise-9 redhatenterprise-10
REDHAT_ARCHS ?= aarch64 x86_64
APK_VERSIONS ?= 3.18 3.19 3.20 3.21 3.22
APK_VERSIONS ?= 3.20 3.21 3.22
APK_ARCHS ?= aarch64 x86_64
APK_REVISION ?= 1
AMAZON_VERSIONS ?= amazon-2 amazon-2023
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/nginx/agent/v3

go 1.24.2

toolchain go1.24.10
toolchain go1.24.11

require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.9-20250912141014-52f32327d4b0.1
Expand Down
10 changes: 6 additions & 4 deletions scripts/packages/package-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ majorVersion=$(echo ${VERSION} | cut -d. -f1)
# Define package URIs to check for each platform

APK=()
ALPINE_VERSIONS=("3.22" "3.21" "3.20" "3.19")
ALPINE_VERSIONS=("3.22" "3.21" "3.20")
ALPINE_ARCH=("x86_64" "aarch64")
for alpine_version in "${ALPINE_VERSIONS[@]}"; do
for arch in ${ALPINE_ARCH[@]}; do
Expand Down Expand Up @@ -102,9 +102,11 @@ for arch in ${RPM_ARCH[@]}; do
AMZN+=("amzn2/2/${arch}/RPMS/nginx-agent-$VERSION.amzn2.ngx.${arch}.rpm")
done

SUSE=(
sles/15/x86_64/RPMS/nginx-agent-$VERSION.sles15.ngx.x86_64.rpm
)
SUSE=()
SUSE_VERSIONS=("15", "16")
for suse_version in "${SUSE_VERSIONS[@]}"; do
SUSE+=("sles/${suse_version}/x86_64/RPMS/nginx-agent-$VERSION.sles${suse_version}.ngx.x86_64.rpm")
done

# Aggregate all URIs to fetch
uris=(
Expand Down
Loading