Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP - DO NOT MERGE] Add CI/CD for Java {8, 11, 17, 18} x {HotSpot, OpenJ9}, fix tests #2704

Closed
wants to merge 5 commits into from

Commits on Jan 30, 2022

  1. Configuration menu
    Copy the full SHA
    445932d View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. Make builds partially compatible with Java 8..17

    Fixed:
    - Generic warnings introduced in Java 9 when using `Stream#of` is used in combination with `Function.identity()`, probably caused by JEP 215 "Tiered Attribution for javac"
    - Java 13 introduced `String#stripIndent`, which conflicted with Groovy itself, see apache/groovy#1139, the errors were probably caused by whitespace indentation which was handled differently
    - Resolved compiler warning about missing `@Deprecated` on deprecated `ExecutionStepInfo#getFieldContainer` method (JDK 9/JEP 277 "Enhanced Deprecation")
    - The wrong `BigInteger` constructor was being used in `ScalarIntTest.groovy` and `ScalarFloatTest.groovy`
    
    Not yet fixed:
    - Java 16 modified LineNumberReader#getLineNumber behavior (see JDK-8241020) which messed up MultiSourceReader
    
    Links:
    - apache/groovy#1139
    - https://bugs.openjdk.java.net/browse/JDK-8241020
    - https://github.com/openjdk/jdk/commits/master/src/java.base/share/classes/java/io/LineNumberReader.java
    jord1e committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    833bf7e View commit details
    Browse the repository at this point in the history
  2. Test new CI file

    jord1e committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    fe0b2db View commit details
    Browse the repository at this point in the history
  3. Test new CI file 2

    jord1e committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    2b73a1c View commit details
    Browse the repository at this point in the history
  4. Test new CI file 3

    jord1e committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    4146505 View commit details
    Browse the repository at this point in the history