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

Create recordings for tasks submitted to an ExecutorService #269

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

refactor: change Recorder to an Enum singleton

fb4dc47
Select commit
Loading
Failed to load commit list.
Draft

Create recordings for tasks submitted to an ExecutorService #269

refactor: change Recorder to an Enum singleton
fb4dc47
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Mar 21, 2024 in 29m 44s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #269 Create recordings for tasks submitted to an ExecutorService.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job ENV OS State
1028.1 jdk 8 JDK=8 Linux passed
1028.2 jdk 11 JDK=11 Linux passed
1028.3 jdk 17 JDK=17 Linux passed

Build Configuration

Build Option Setting
Language Shell
Operating System Linux (Jammy)
Build Configuration
{
  "language": "shell",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "if": "type != push OR branch = master OR branch =~ /^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/",
  "before_cache": [
    "rm -f  $HOME/.gradle/caches/modules-2/modules-2.lock",
    "rm -fr $HOME/.gradle/caches/*/plugin-resolution/"
  ],
  "cache": {
    "directories": [
      "$HOME/.gradle/caches/",
      "$HOME/.gradle/wrapper/",
      "$HOME/.m2/",
      "$HOME/.asdf/"
    ]
  },
  "before_install": [
    "if [ ! -d $HOME/.asdf/plugins ]; then\n  git clone https://github.com/asdf-vm/asdf.git $HOME/.asdf --branch v0.14.0\n  source \"$HOME/.asdf/asdf.sh\"\n  asdf plugin add java\n  asdf plugin add sbt https://github.com/bram2000/asdf-sbt.git\n  asdf install sbt latest:1.9\n  asdf plugin add prune https://github.com/apotterri/asdf-prune.git\nfi\nsource \"$HOME/.asdf/asdf.sh\"\nasdf update\nasdf plugin update --all\nasdf prune sbt 1.9\nasdf global sbt latest:1.9\nnvm install lts/*\n"
  ],
  "jobs": {
    "include": [
      {
        "name": "jdk 8",
        "env": [
          {
            "JDK": "8"
          }
        ],
        "install": [
          "source \"$HOME/.asdf/asdf.sh\"\nasdf install java latest:adoptopenjdk-8\nasdf prune java adoptopenjdk-8\nasdf global java latest:adoptopenjdk-8\n"
        ]
      },
      {
        "name": "jdk 11",
        "env": [
          {
            "JDK": "11"
          }
        ],
        "install": [
          "source \"$HOME/.asdf/asdf.sh\"\nasdf install java latest:adoptopenjdk-11\nasdf prune java adoptopenjdk-11\nasdf global java latest:adoptopenjdk-11\n"
        ]
      },
      {
        "name": "jdk 17",
        "env": [
          {
            "JDK": "17"
          }
        ],
        "install": [
          "source \"$HOME/.asdf/asdf.sh\"\nasdf install java latest:adoptopenjdk-17\nasdf prune java adoptopenjdk-17\nasdf global java latest:adoptopenjdk-17\n"
        ]
      }
    ]
  },
  "script": [
    "source \"$HOME/.asdf/asdf.sh\"\nexport JAVA_HOME=\"$(dirname $(dirname $(asdf which java)))\"\nexport JDK_HOME=\"$JAVA_HOME\"\njava -version\n./gradlew check\n./gradlew integrationTest\n./bin/test\n"
  ],
  "before_deploy": [
    "npm i -g \\\n    semantic-release \\\n    @semantic-release/exec \\\n    @semantic-release/git \\\n    @semantic-release/changelog \\\n    @google/semantic-release-replace-plugin\n"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "semantic-release",
      "on": {
        "branch": [
          "master"
        ],
        "condition": [
          "$JDK = 8"
        ]
      }
    }
  ]
}