WIP: Compile 4.x driver with java11 (todo: support java-8 and java-11… #1692
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Branch
succeeded
Jul 17, 2023 in 15m 5s
Build Passed
The build passed.
Details
This is a normal build for the JAVA-3091 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
Job | JDK | ENV | OS | State |
---|---|---|---|---|
13396.1 | openjdk8 | JDK='OpenJDK 8' | Linux | passed |
13396.2 | JDK='OpenJDK 11' | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Java |
Operating System | Linux (Trusty) |
Build Configuration
{
"language": "java",
"os": [
"linux"
],
"dist": "trusty",
"sudo": false,
"before_install": [
"jdk_switcher use openjdk8",
"./install-snapshots.sh"
],
"install": [
"mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V"
],
"script": [
"mvn test -Djacoco.skip=true -Dmaven.test.failure.ignore=true -Dmaven.javadoc.skip=true -B -V"
],
"cache": {
"directories": [
"$HOME/.m2"
]
},
"jobs": {
"include": [
{
"env": [
{
"JDK": "'OpenJDK 8'"
}
],
"jdk": "openjdk8"
},
{
"env": [
{
"JDK": "'OpenJDK 11'"
}
],
"before_script": [
". $TRAVIS_BUILD_DIR/ci/install-jdk.sh -F 11 -L GPL"
]
}
]
}
}
Loading