Skip to content

Commit 0113fdf

Browse files
committed
Responded to PR feedback
1 parent f9354a9 commit 0113fdf

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/cacert-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Upload deb file to Artifactory
7272
if: steps.check-deb.outputs.file_exists == 'false'
7373
run: |
74-
DISTRO_LIST="trixie,bookworm,oracular,noble,jammy,focal,bionic"
74+
DISTRO_LIST="trixie,bookworm,buster,oracular,noble,jammy,focal,bionic"
7575
FILE=$(ls ca-certificates/debian/build/ospackage/*.deb)
7676
# Upload cacerts deb file
7777
jf rt u "$FILE" "deb/pool/main/a/adoptium-ca-certificates/$(basename ${FILE})" --flat=true

docs/Guide_To_The_Linux_Installers.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ For Debian based distributions a similar process is required, firstly add the di
429429
"trixie", // Debian/13
430430
"bookworm", // Debian/12
431431
"bullseye", // Debian/11
432+
"buster", // Debian/10
432433
"oracular", // Ubuntu/24.10 (STS)
433434
"noble", // Ubuntu/24.04 (LTS)
434435
"jammy", // Ubuntu/22.04 (LTS)
@@ -487,7 +488,7 @@ Simply add or remove the supported distributions to the <b>debVersionList</b> li
487488
- name: Upload deb file to Artifactory
488489
if: steps.check-deb.outputs.file_exists == 'false'
489490
run: |
490-
debVersionList=("bookworm" "bullseye" "oracular" "jammy" "focal" "bionic")
491+
debVersionList=("bookworm" "bullseye" "buster" "oracular" "jammy" "focal" "bionic")
491492
for debVersion in "${debVersionList[@]}"; do
492493
distroList+="deb.distribution=${debVersion};"
493494
done
@@ -507,6 +508,7 @@ def deb_versions = [
507508
"trixie", // Debian/13
508509
"bookworm", // Debian/12
509510
"bullseye", // Debian/11
511+
"buster", // Debian/10
510512
"oracular" // Ubuntu/24.10 (STS)
511513
"noble", // Ubuntu/24.04 (LTS)
512514
"jammy", // Ubuntu/22.04 (LTS)

linux/Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,7 @@ def uploadDebArtifacts(String buildArch, String Version) {
532532
"trixie", // Debian/13
533533
"bookworm", // Debian/12
534534
"bullseye", // Debian/11
535+
"buster", // Debian/10
535536
"oracular", // Ubuntu/24.10 (STS)
536537
"noble", // Ubuntu/24.04 (LTS)
537538
"jammy", // Ubuntu/22.04 (LTS)

linux_new/Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def deb_distros = [
2424
"trixie", // Debian/13
2525
"bookworm", // Debian/12
2626
"bullseye", // Debian/11
27+
"buster", // Debian/10
2728
"oracular", // Ubuntu/24.10 (STS)
2829
"noble", // Ubuntu/24.04 (LTS)
2930
"jammy", // Ubuntu/22.04 (LTS)

0 commit comments

Comments
 (0)