Skip to content

Commit 5efc8c2

Browse files
feat: added the new OS support for NGINX R31 (#538)
* added the new OS support for NGINX R31
1 parent 17fe5e9 commit 5efc8c2

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,18 @@ jobs:
129129
version: "9"
130130
- image: "ubuntu"
131131
version: "22.04"
132-
- image: "alpine"
133-
version: "3.15"
134132
- image: "alpine"
135133
version: "3.16"
136134
- image: "alpine"
137135
version: "3.17"
138136
- image: "alpine"
139137
version: "3.18"
138+
- image: "alpine"
139+
version: "3.19"
140+
- image: "debian"
141+
version: "bullseye-slim"
140142
- image: "debian"
141-
version: "bookworm-slim"
143+
version: "buster-slim"
142144
steps:
143145
- uses: actions/checkout@v3
144146
- uses: actions/setup-go@v3

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ DATE = $(shell date +%F_%H-%M-%S)
1616
# | ---------------- | ----------------------------------------- | -------------------------------------------------------------- |
1717
# | amazonlinux | 2, 2023 | |
1818
# | ubuntu | 20.04, 22.04 | |
19-
# | debian | bookworm-slim, bullseye-slim, buster-slim | |
19+
# | debian | bullseye-slim, buster-slim | |
2020
# | centos | 7 | |
2121
# | redhatenterprise | 7, 8, 9 | |
2222
# | rockylinux | 8, 9 | |
2323
# | almalinux | 8, 9 | |
24-
# | alpine | 3.15, 3.16, 3.17, 3.18 | |
24+
# | alpine | 3.16, 3.17, 3.18, 3.19 | |
2525
# | oraclelinux | 7, 8, 9 | |
2626
# | suse | sles12sp5, sle15 | |
2727
# | freebsd | | Not supported |

Makefile.packaging

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ GITHUB_PACKAGES_DIR := ./build/github/packages
88
AZURE_PACKAGES_DIR := ./build/azure/packages
99
GPG_PUBLIC_KEY := .key
1010

11-
DEB_DISTROS?=ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-bookworm-12 debian-bullseye-11 debian-buster-10
11+
DEB_DISTROS?=ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-bookworm-12 debian-bullseye-11
1212
DEB_ARCHS?=arm64 amd64
1313
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
1414
RPM_ARCH=x86_64
1515
REDHAT_VERSIONS?=redhatenterprise-7 redhatenterprise-8 redhatenterprise-9
1616
REDHAT_ARCHS?=aarch64 x86_64
1717
ROCKY_VERSIONS?=rocky-8 rocky-9
1818
ROCKY_ARCHS?=aarch64 x86_64
19-
FREEBSD_DISTROS?="FreeBSD:12:amd64" "FreeBSD:13:amd64"
20-
APK_VERSIONS?=3.15 3.16 3.17, 3.18
19+
FREEBSD_DISTROS?="FreeBSD:13:amd64" "FreeBSD:14:amd64"
20+
APK_VERSIONS?=3.16 3.17 3.18 3.19
2121
APK_ARCHS?=aarch64 x86_64
2222
ALMA_VERSIONS?=almalinux-8 almalinux-9
2323
ALMA_ARCHS?=aarch64 x86_64

site/content/technical-specifications.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ AlmaLinux
1919
- 9 (x86_64, aarch64)
2020

2121
Alpine Linux
22-
- 3.15 (x86_64, aarch64)
2322
- 3.16 (x86_64, aarch64)
2423
- 3.17 (x86_64, aarch64)
2524
- 3.18 (x86_64, aarch64)
25+
- 3.19 (x86_64, aarch64)
2626

2727
Amazon Linux
2828
- 2023 (x86_64, aarch64)
@@ -38,8 +38,8 @@ Debian
3838
- 12 (x86_64, aarch64)
3939

4040
FreeBSD
41-
- 12.1+ (amd64)
4241
- 13 (amd64)
42+
- 14 (amd64)
4343

4444
Oracle Linux
4545
- 7.4+ (x86_64)

0 commit comments

Comments
 (0)