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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support trusted profile #39

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

chore: version bump

7ef4c8a
Select commit
Loading
Failed to load commit list.
Open

feat: support trusted profile #39

chore: version bump
7ef4c8a
Select commit
Loading
Failed to load commit list.
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"
        ]
      }
    ]
  }
}