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

Record Monitor activities as finished #961 #967

Merged
merged 1 commit into from
May 30, 2024

Record Monitor activities as finished #961

aa2806f
Select commit
Loading
Failed to load commit list.
Merged

Record Monitor activities as finished #961 #967

Record Monitor activities as finished #961
aa2806f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded May 24, 2024 in 14m 52s

Build Passed

The build passed.

Details

This is a normal build for the feature/issue961 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Groovy
Operating System Linux (Bionic)
JDK Version openjdk11
Build Configuration
{
  "language": "groovy",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "jdk": [
    "openjdk11"
  ],
  "branches": {
    "only": [
      "master",
      "dev",
      "hot-fix",
      "/^feature\\/.*$/",
      "/^hotfix\\/.*$/"
    ]
  },
  "services": [
    "mongodb",
    "elasticsearch"
  ],
  "before_install": [
    "export TZ=Australia/Canberra",
    "rm -f  $HOME/.gradle/caches/modules-2/modules-2.lock",
    "rm -fr $HOME/.gradle/caches/*/plugin-resolution/",
    "curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.3-amd64.deb -o elasticsearch.deb",
    "sudo dpkg -i --force-confnew elasticsearch.deb",
    "sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch",
    "sudo service elasticsearch restart"
  ],
  "install": [
    "true"
  ],
  "cache": {
    "directories": [
      "$HOME/.m2",
      "$HOME/.gradle/caches/",
      "$HOME/.gradle/wrapper/"
    ]
  },
  "before_script": [
    "sleep 10"
  ],
  "script": [
    "./gradlew -PenableJacoco=true jacocoTestCoverageVerification"
  ],
  "after_success": [
    "[ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ] && ./gradlew clean && travis_retry ./gradlew publish"
  ],
  "env": [
    "global={:JAVA_TOOL_OPTIONS=>\"-Dhttps.protocols=TLSv1.2\"}={:TRAVIS_NODE_VERSION=>\"\\\"12.13.0\\\"\"}=TRAVIS_DEPLOY_USERNAME=[secure]=TRAVIS_DEPLOY_PASSWORD=[secure]"
  ]
}