Skip to content

Commit

Permalink
feat: added the new OS support for NGINX R31 (#538)
Browse files Browse the repository at this point in the history
* added the new OS support for NGINX R31
  • Loading branch information
oliveromahony authored Jan 12, 2024
1 parent 17fe5e9 commit 5efc8c2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,18 @@ jobs:
version: "9"
- image: "ubuntu"
version: "22.04"
- image: "alpine"
version: "3.15"
- image: "alpine"
version: "3.16"
- image: "alpine"
version: "3.17"
- image: "alpine"
version: "3.18"
- image: "alpine"
version: "3.19"
- image: "debian"
version: "bullseye-slim"
- image: "debian"
version: "bookworm-slim"
version: "buster-slim"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ DATE = $(shell date +%F_%H-%M-%S)
# | ---------------- | ----------------------------------------- | -------------------------------------------------------------- |
# | amazonlinux | 2, 2023 | |
# | ubuntu | 20.04, 22.04 | |
# | debian | bookworm-slim, bullseye-slim, buster-slim | |
# | debian | bullseye-slim, buster-slim | |
# | centos | 7 | |
# | redhatenterprise | 7, 8, 9 | |
# | rockylinux | 8, 9 | |
# | almalinux | 8, 9 | |
# | alpine | 3.15, 3.16, 3.17, 3.18 | |
# | alpine | 3.16, 3.17, 3.18, 3.19 | |
# | oraclelinux | 7, 8, 9 | |
# | suse | sles12sp5, sle15 | |
# | freebsd | | Not supported |
Expand Down
6 changes: 3 additions & 3 deletions Makefile.packaging
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ GITHUB_PACKAGES_DIR := ./build/github/packages
AZURE_PACKAGES_DIR := ./build/azure/packages
GPG_PUBLIC_KEY := .key

DEB_DISTROS?=ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-bookworm-12 debian-bullseye-11 debian-buster-10
DEB_DISTROS?=ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-bookworm-12 debian-bullseye-11
DEB_ARCHS?=arm64 amd64
RPM_DISTROS?=centos-7-x86_64 oraclelinux-7-x86_64 oraclelinux-8-x86_64 oraclelinux-9-x86_64 suse-12-x86_64 suse-15-x86_64
RPM_ARCH=x86_64
REDHAT_VERSIONS?=redhatenterprise-7 redhatenterprise-8 redhatenterprise-9
REDHAT_ARCHS?=aarch64 x86_64
ROCKY_VERSIONS?=rocky-8 rocky-9
ROCKY_ARCHS?=aarch64 x86_64
FREEBSD_DISTROS?="FreeBSD:12:amd64" "FreeBSD:13:amd64"
APK_VERSIONS?=3.15 3.16 3.17, 3.18
FREEBSD_DISTROS?="FreeBSD:13:amd64" "FreeBSD:14:amd64"
APK_VERSIONS?=3.16 3.17 3.18 3.19
APK_ARCHS?=aarch64 x86_64
ALMA_VERSIONS?=almalinux-8 almalinux-9
ALMA_ARCHS?=aarch64 x86_64
Expand Down
4 changes: 2 additions & 2 deletions site/content/technical-specifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ AlmaLinux
- 9 (x86_64, aarch64)

Alpine Linux
- 3.15 (x86_64, aarch64)
- 3.16 (x86_64, aarch64)
- 3.17 (x86_64, aarch64)
- 3.18 (x86_64, aarch64)
- 3.19 (x86_64, aarch64)

Amazon Linux
- 2023 (x86_64, aarch64)
Expand All @@ -38,8 +38,8 @@ Debian
- 12 (x86_64, aarch64)

FreeBSD
- 12.1+ (amd64)
- 13 (amd64)
- 14 (amd64)

Oracle Linux
- 7.4+ (x86_64)
Expand Down

0 comments on commit 5efc8c2

Please sign in to comment.