@@ -45,7 +45,7 @@ Supported Linux Distros:
4545Distribution Type| Supported Versions
4646----------|---------
4747Apk (Alpine)| All supported version.
48- Deb (Debian)| Trixie (Debian 13)<br >Bookworm (Debian 12)</br >Bullseye (Debian 11)<br >Buster (Debian 10)</br > Noble (Ubuntu 24.04)</br >Jammy (Ubuntu 24 .04)</br >Focal (Ubuntu 20.04)</br >Bionic (Ubuntu 18.04)
48+ Deb (Debian)| Trixie (Debian 13)<br >Bookworm (Debian 12)</br >Bullseye (Debian 11)<br >Buster (Debian 10)</br > Oracular (Ubuntu 24.10)</ br > Noble (Ubuntu 24.04)</br >Jammy (Ubuntu 22 .04)</br >Focal (Ubuntu 20.04)</br >Bionic (Ubuntu 18.04)
4949RPM (RHEL)| centos 7</br > rocky 8</br >RHEL7 , RHEL8 & RHEL9</br > Fedora 35, 36, 37, 38 ,39 , 40</br >Oracle Linux 7 & 8</br >Amazon Linux 2
5050RPM(SUSE) | Opensuse 15.3</br >Opensuse 15.4</br >Opensuse 15.5</br >SLES 12</br >SLES15
5151
@@ -429,6 +429,7 @@ For Debian based distributions a similar process is required, firstly add the di
429429 "bookworm", // Debian/12
430430 "bullseye", // Debian/11
431431 "buster", // Debian/10
432+ "oracular", // Ubuntu/24.10 (STS)
432433 "noble", // Ubuntu/24.04 (LTS)
433434 "jammy", // Ubuntu/22.04 (LTS)
434435 "focal", // Ubuntu/20.04 (LTS)
@@ -446,7 +447,7 @@ In addition to the updates detailed above, it is also important to change the fo
446447the following line should be changed :
447448
448449```
449- debVersionList="trixie bookworm bullseye buster noble jammy focal bionic"
450+ debVersionList="trixie bookworm bullseye buster oracular noble jammy focal bionic"
450451```
451452
452453And similarly in the following two files
@@ -463,6 +464,7 @@ The array needs to be updated to add or remove distributions as necessary as sho
463464 Arguments.of("debian", "bookworm"), // Debian/12 (testing)
464465 Arguments.of("debian", "bullseye"), // Debian/11 (stable)
465466 Arguments.of("debian", "buster"), // Debian/10 (oldstable)
467+ Arguments.of("ubuntu", "oracular"), // Ubuntu/24.10 (STS)
466468 Arguments.of("ubuntu", "noble"), // Ubuntu/24.04 (LTS)
467469 Arguments.of("ubuntu", "jammy"), // Ubuntu/22.04 (LTS)
468470 Arguments.of("ubuntu", "focal"), // Ubuntu/20.04 (LTS)
@@ -486,7 +488,7 @@ Simply add or remove the supported distributions to the <b>debVersionList</b> li
486488- name: Upload deb file to Artifactory
487489 if: steps.check-deb.outputs.file_exists == 'false'
488490 run: |
489- debVersionList=("bookworm" "bullseye" "buster" "jammy" "focal" "bionic")
491+ debVersionList=("bookworm" "bullseye" "buster" "oracular" " jammy" "focal" "bionic")
490492 for debVersion in "${debVersionList[@]}"; do
491493 distroList+="deb.distribution=${debVersion};"
492494 done
@@ -503,14 +505,15 @@ Again, new distributions should be added or removed in the array.
503505
504506```
505507def deb_versions = [
506- "trixie", // Debian/13
508+ "trixie", // Debian/13
507509 "bookworm", // Debian/12
508510 "bullseye", // Debian/11
509511 "buster", // Debian/10
512+ "oracular" // Ubuntu/24.10 (STS)
510513 "noble", // Ubuntu/24.04 (LTS)
511514 "jammy", // Ubuntu/22.04 (LTS)
512515 "focal", // Ubuntu/20.04 (LTS)
513- "bionic" // Ubuntu/18.04 (LTS)
516+ "bionic" // Ubuntu/18.04 (LTS)
514517]
515518```
516519
@@ -537,13 +540,13 @@ In addition to the previous changes, the automated test source code also needs u
537540linux/ca-certificates/debian/src/packageTest/java/org/adoptium/cacertificates/AptOperationsTest.java
538541```
539542
540- This file requires that the <b >.contains("Version: 1.0.3 -1")</b > line be updated to reflect the new version number added to the <i >changelog</i > above.
543+ This file requires that the <b >.contains("Version: 1.0.4 -1")</b > line be updated to reflect the new version number added to the <i >changelog</i > above.
541544```
542545result = runShell(container, "apt-cache show adoptium-ca-certificates");
543546 assertThat(result.getExitCode()).isEqualTo(0);
544547 assertThat(result.getStdout())
545548 .contains("Package: adoptium-ca-certificates")
546- .contains("Version: 1.0.3 -1")
549+ .contains("Version: 1.0.4 -1")
547550 .contains("Priority: optional")
548551 .contains("Architecture: all")
549552 .contains("Status: install ok installed");
0 commit comments