From d914aa6dcfa04049dc79fc47ab6533b05150fa5f Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:02:11 +0200 Subject: [PATCH 01/20] dummy PR for testing purposes this PR is only for testing purposes and will be deleted soon --- .../classes/jdk/internal/platform/CgroupSubsystemFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index d963c46f079..738de343c0a 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -401,3 +401,4 @@ public Map getInfos() { } } } + From 3b397f0e98e3f1ffd80110cb2fd622e95621620f Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:22:40 +0200 Subject: [PATCH 02/20] Add empty line at the end of CgroupSubsystemFactory.java --- .../classes/jdk/internal/platform/CgroupSubsystemFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index 738de343c0a..7516577101f 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -402,3 +402,4 @@ public Map getInfos() { } } + From 2ee61f8725e822f6a82cd008237d903943cfe1e2 Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:18:08 +0200 Subject: [PATCH 03/20] Fix formatting in CgroupSubsystemFactory.java --- .../classes/jdk/internal/platform/CgroupSubsystemFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index 7516577101f..5e2c4fe40e2 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -403,3 +403,4 @@ public Map getInfos() { } + From 49971c9f1f44f0686032ca3d6d7ad606e7a1d371 Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Mon, 20 Oct 2025 17:19:14 +0200 Subject: [PATCH 04/20] Update CgroupSubsystemFactory.java --- .../classes/jdk/internal/platform/CgroupSubsystemFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index 5e2c4fe40e2..c82d54e2454 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -404,3 +404,4 @@ public Map getInfos() { + From 6efbba2a9bda34086bf60cff2491192e82b50e75 Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Tue, 21 Oct 2025 17:54:24 +0200 Subject: [PATCH 05/20] Add Jenkins pipeline configuration --- Jenkinsfile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000000..7cfe0bfe146 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,32 @@ +pipeline { + agent { + label "linux_ppc64le" + } + environment { + MAJOR = "26" + RELEASE = "false" + } + stages { + stage("Init") { + when { + anyOf { + triggeredBy 'UserIdCause' + expression { env.JENKINS_IS_ACTIVE == "FALSE" } + } + } + steps { + + script { + publishChecks( + name: 'PR Build', + title: 'Build Results', + summary: 'All tests passed!', + detailsURL: env.BUILD_URL, + conclusion: 'SUCCESS' + ) + } + + } + } + } +} From c327067cd7eab1b8a58629f75ad0af274d2317a8 Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:09:33 +0100 Subject: [PATCH 06/20] Delete Jenkinsfile --- Jenkinsfile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 7cfe0bfe146..00000000000 --- a/Jenkinsfile +++ /dev/null @@ -1,32 +0,0 @@ -pipeline { - agent { - label "linux_ppc64le" - } - environment { - MAJOR = "26" - RELEASE = "false" - } - stages { - stage("Init") { - when { - anyOf { - triggeredBy 'UserIdCause' - expression { env.JENKINS_IS_ACTIVE == "FALSE" } - } - } - steps { - - script { - publishChecks( - name: 'PR Build', - title: 'Build Results', - summary: 'All tests passed!', - detailsURL: env.BUILD_URL, - conclusion: 'SUCCESS' - ) - } - - } - } - } -} From 23584de9b35cbcf4e5d2ff396baf0455f6d4dd10 Mon Sep 17 00:00:00 2001 From: raeessap <166003682+raeessap@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:20:09 +0100 Subject: [PATCH 07/20] Update CgroupSubsystemFactory.java --- .../classes/jdk/internal/platform/CgroupSubsystemFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index c82d54e2454..f7a31db806b 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -405,3 +405,4 @@ public Map getInfos() { + From dfab61f3106eeed9ecce7831efa7d976bfca9916 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 10:13:04 +0100 Subject: [PATCH 08/20] fix --- .github/workflows/build-gh-pages.yml | 1 + .../jdk/internal/platform/CgroupSubsystemFactory.java | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build-gh-pages.yml b/.github/workflows/build-gh-pages.yml index fa2f16db4d4..7ed9e836113 100644 --- a/.github/workflows/build-gh-pages.yml +++ b/.github/workflows/build-gh-pages.yml @@ -67,3 +67,4 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + diff --git a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java index f7a31db806b..d963c46f079 100644 --- a/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java +++ b/src/java.base/linux/classes/jdk/internal/platform/CgroupSubsystemFactory.java @@ -401,8 +401,3 @@ public Map getInfos() { } } } - - - - - From 9db9174d5c07cf5863a5c7f6364fa9f359432484 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 11:30:19 +0100 Subject: [PATCH 09/20] fix --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d02fb45d61..86c8dbc4528 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,6 +30,8 @@ on: push: branches-ignore: - pr/* + paths-ignore: + - 'README.md' # SapMachine 2020-11-04: Trigger on pull request pull_request: branches: From 0dc0822d54821ef736ec136decfed6ff6f2a0ee3 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 11:34:13 +0100 Subject: [PATCH 10/20] fix --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 86c8dbc4528..25ce1dba272 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,9 @@ on: branches-ignore: - pr/* paths-ignore: - - 'README.md' + - '**/*.md' + - 'docs/**' + - '.github/**' # SapMachine 2020-11-04: Trigger on pull request pull_request: branches: From 5882c70db02a65e4d39bd2037b6b827134225a27 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 15:47:42 +0100 Subject: [PATCH 11/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index 52c486d7f36..d23cfafa575 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -191,3 +191,4 @@ public Boolean isTraversable(File f) { return null; // Use default from FileSystemView } } + From ed0af6668a47f00fa3ed071ab04baab7f8070677 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 15:52:53 +0100 Subject: [PATCH 12/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index d23cfafa575..54233832aba 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -192,3 +192,4 @@ public Boolean isTraversable(File f) { } } + From 021a42419dbfb0763a01c5024804da3a01d98ac0 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Fri, 9 Jan 2026 15:55:51 +0100 Subject: [PATCH 13/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index 54233832aba..5e4f18a6be6 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -193,3 +193,4 @@ public Boolean isTraversable(File f) { } + From b42b908610db25ffcebd5539774861338ec1984d Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Mon, 12 Jan 2026 14:08:13 +0100 Subject: [PATCH 14/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index 5e4f18a6be6..54233832aba 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -193,4 +193,3 @@ public Boolean isTraversable(File f) { } - From fb3fbc1b8b585043d8e2f5d046ea893e837ba0dc Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Mon, 12 Jan 2026 14:08:50 +0100 Subject: [PATCH 15/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index 54233832aba..52c486d7f36 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -191,5 +191,3 @@ public Boolean isTraversable(File f) { return null; // Use default from FileSystemView } } - - From 14fd6425dfb343cde7ba8ea40954e72bf2d39f2b Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Mon, 12 Jan 2026 14:09:47 +0100 Subject: [PATCH 16/20] fix --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a5f4ce34822..fe83d120876 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,4 @@ External contributions to this project are currently not accepted. For code impr ## License This project is run under the same licensing terms as the upstream OpenJDK project. Additional information is available in the [LICENSE](LICENSE) file in the top-level directory. + From e40510b1de0297a112ac5802842ba3925cfaa732 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Tue, 13 Jan 2026 11:35:28 +0100 Subject: [PATCH 17/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index 52c486d7f36..d23cfafa575 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -191,3 +191,4 @@ public Boolean isTraversable(File f) { return null; // Use default from FileSystemView } } + From 3ee89dea9764da0da1f08083809c924a7d858144 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Tue, 13 Jan 2026 11:50:04 +0100 Subject: [PATCH 18/20] fix --- src/demo/share/jfc/FileChooserDemo/ExampleFileView.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java index d23cfafa575..52c486d7f36 100644 --- a/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java +++ b/src/demo/share/jfc/FileChooserDemo/ExampleFileView.java @@ -191,4 +191,3 @@ public Boolean isTraversable(File f) { return null; // Use default from FileSystemView } } - From f080d48c0d94d9a3609e0b7ffc5ee8b36e963c15 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Mon, 19 Jan 2026 12:21:42 +0100 Subject: [PATCH 19/20] do not trigger github actions for docs files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fe83d120876..7388f497940 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,4 @@ External contributions to this project are currently not accepted. For code impr ## License This project is run under the same licensing terms as the upstream OpenJDK project. Additional information is available in the [LICENSE](LICENSE) file in the top-level directory. + From 7a2d585dd64e3cf1a51b5b9307aa012a72253c66 Mon Sep 17 00:00:00 2001 From: Raees Khan Date: Mon, 19 Jan 2026 12:24:31 +0100 Subject: [PATCH 20/20] do not trigger github actions for docs files --- src/java.base/macosx/classes/java/net/DefaultInterface.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java.base/macosx/classes/java/net/DefaultInterface.java b/src/java.base/macosx/classes/java/net/DefaultInterface.java index 3bc629b26af..d54b825d95b 100644 --- a/src/java.base/macosx/classes/java/net/DefaultInterface.java +++ b/src/java.base/macosx/classes/java/net/DefaultInterface.java @@ -23,6 +23,7 @@ * questions. */ + package java.net; import java.util.Enumeration;