From 626057ba81ac8ddeb67dd1b55e1c36e3afe1c738 Mon Sep 17 00:00:00 2001 From: "Piotr P. Karwasz" Date: Thu, 4 Jun 2026 10:16:23 +0200 Subject: [PATCH] [DIRMINA-1197] Remove the obsolete Java CI workflow from `trunk` The `trunk` branch is a long-lived integration branch rather than a released development line, so it does not need its own CI run. The Java CI workflow now lives on the maintained release branches (`2.0.X`, `2.1.X`, `2.2.X`) instead. The deleted workflow was also unusable: it pinned retired runners (`ubuntu-18.04`, `windows-2016`) and the long-deprecated `actions/checkout@v1` and `actions/setup-java@v1`, and it built against JDKs 7 to 15. Rather than port it, we drop it here. --- .github/workflows/ci.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 51d4b58b1..000000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: Java CI - -on: [push] - -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-18.04, macOS-latest, windows-2016] - java: [7, 8, 11, 15] - fail-fast: false - max-parallel: 4 - name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} - - steps: - - uses: actions/checkout@v1 - - name: Set up JDK - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java }} - - name: Test with Maven - run: mvn test -B --file pom.xml - -... \ No newline at end of file