Karm / mandrel-integration-tests

Integration tests for GraalVM and its Mandrel distribution. Runs Quarkus, Helidon and Micronaut applications and small targeted reproducers. The focus is solely on native-image utility and compilation of Java applications into native executables.
Apache License 2.0
5 stars 3 forks source link

Fix version test exclusion #200

Closed jerboaa closed 1 year ago

jerboaa commented 1 year ago

The earlier fix missed to exclude 23.1 as the condition was 23.1.0.0-dev <= 23.1 which is true (wrong). What we actually want is to run it up to and including to 23.0. Latest release is 23.0.1, so up to a max value of 23.0 doesn't work either, since that would amount to 23.0.1 <= 23.0.0 which is false. Use 23.0.99 as the comparison value instead.

jerboaa commented 1 year ago

Fixes issues like these: https://github.com/graalvm/mandrel/actions/runs/6144168401/job/16670211716#step:11:17929