Conversation
skipping test if it should run on jdk25 or newer
parallel_install_test.sh
Outdated
| RUNNING=false | ||
|
|
||
| if [[ ( x${BUILD_OS_NAME} == xel && ${BUILD_OS_VERSION} > 6 ) || x${BUILD_OS_NAME} == xf ]]; then | ||
| if [[ ${JDK_VERSION} -lt 25 ]]; then |
There was a problem hiding this comment.
The removal of old condition is wrong? It hsoudl be
(( x${BUILD_OS_NAME} == xel && ${BUILD_OS_VERSION} > 6 ) && ${JDK_VERSION} -lt 25 ) || x${BUILD_OS_NAME} == xf
There was a problem hiding this comment.
do you plan on running anything on el6 and older??
There was a problem hiding this comment.
I can add it to the readme..
There was a problem hiding this comment.
The parallel isntalls are at rhel 8+9 on jdk 8-21. Are missing on all jdks in all fedoras. Are missing on jdk25 in both el9 and 10
There was a problem hiding this comment.
that it wont work on el6 and older.. but no point in leaving condition for a system almost as old as I am
There was a problem hiding this comment.
so: The parallel isntalls are at rhel 7-9 on jdk 8-21. Are missing on all jdks in all fedoras. Are missing on jdk25 in both el9 and 10, are missing on jdk21 in el10
more strict condition, my initiall understanding was wrong
| @@ -61,10 +61,21 @@ function run_parallel_test { | |||
|
|
|||
| RUNNING=false | |||
There was a problem hiding this comment.
pls add comment that all fedoras have it removed. As it is missing in conditions, it can be confusing.
skipping test if it should run on jdk25 or newer