feat: support trusted profile #39
Open
Travis CI / Travis CI - Branch
succeeded
Jan 18, 2025 in 1m 52s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the new-oauth-client 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.
Stage 1: Build-Test
This stage passed.
Job | JDK | ENV | OS | State |
---|---|---|---|---|
168.1 | openjdk11 | MVN_ARGS="--settings build/.travis.settings.xml" | Linux | passed |
168.2 | openjdk17 | MVN_ARGS="--settings build/.travis.settings.xml" | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Java |
Operating System | Linux (Jammy) |
JDK Version | openjdk11 |
Build Configuration
{
"language": "java",
"os": [
"linux"
],
"dist": "jammy",
"jdk": [
"openjdk11"
],
"notifications": {
"email": [
{
"enabled": true
}
]
},
"branches": {
"except": [
"gh-pages"
]
},
"cache": {
"directories": [
"$HOME/.m2"
]
},
"env": [
"global={:MVN_ARGS=>\"\\\"--settings build/.travis.settings.xml\\\"\"}"
],
"stages": [
{
"name": "Build-Test"
}
],
"before_install": [
"sudo apt-get update",
"env | grep TRAVIS",
"pyenv global 3.8"
],
"jobs": {
"include": [
{
"stage": "Build-Test",
"jdk": "openjdk11",
"install": [
"true"
],
"script": [
"build/setMavenVersion.sh",
"mvn verify -fae -DskipITs $MVN_ARGS"
]
},
{
"jdk": "openjdk17",
"install": [
"true"
],
"script": [
"mvn verify -fae -DskipITs $MVN_ARGS"
]
}
]
}
}
Loading