Current GHA workflow only takes `VERSION_FEATURE` to deduce the bundle names, 
which means the test jobs in GHA workflows are unable to run.

See for example JDK 18u GHA run:

Build step produce:


Creating jdk-18.0.1-internal+0_linux-x64_bin.tar.gz
Creating jdk-18.0.1-internal+0_linux-x64_bin-symbols.tar.gz
Creating jdk-18.0.1-internal+0_linux-x64_bin-tests-demos.tar.gz


Persist step fails to find it:


Warning: No files were found with the provided path: 
jdk/build/linux-x64/bundles/jdk-18-internal+0_linux-x64_bin.tar.gz


...because it looks for "18", not "18.0.1".

17u and 11u hacked the GHA workflow to get tests to work (see 
[JDK-8276130](https://bugs.openjdk.java.net/browse/JDK-8276130)), but this 
would keep breaking in update releases as 19.0.1, 20.0.1, etc. fork out of the 
mainline. We should instead fix that in the mainline workflow config.

Additional testing:
 - [x] GHA passes with "fake" 19.0.1
 - [ ] GHA passes with "normal" 19

-------------

Commit messages:
 - Fix

Changes: https://git.openjdk.java.net/jdk/pull/7785/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=7785&range=00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8283017
  Stats: 29 lines in 1 file changed: 18 ins; 0 del; 11 mod
  Patch: https://git.openjdk.java.net/jdk/pull/7785.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/7785/head:pull/7785

PR: https://git.openjdk.java.net/jdk/pull/7785

Reply via email to