Reproduce Cached Temurin 25 Issue #53
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Reproduce Cached Temurin 25 Issue | |
| on: [workflow_dispatch] | |
| jobs: | |
| test-temurin-cache: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Step 1: Use setup-java with cache | |
| - name: Setup Java 25 Temurin with cache | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Verify Java version | |
| run: java -version | |
| # Step 2: Force cache reuse (simulate reused cache) | |
| - name: Restore cached JDK manually | |
| uses: actions/cache@v4 | |
| with: | |
| path: /usr/lib/jvm/temurin-25-jdk-amd64 | |
| key: temurin25-cache-key-fixed | |
| restore-keys: | | |
| temurin25-cache-key- | |
| # Step 3: Try running jlink to trigger verification | |
| - name: Run jlink to trigger validation | |
| run: | | |
| jlink \ | |
| --add-modules java.base \ | |
| --output ./minimal-runtime | |
| - name: Check integrity files | |
| run: | | |
| echo "Checking checksum of ct.sym..." | |
| sha512sum /usr/lib/jvm/temurin-25-jdk-amd64/lib/ct.sym || true |