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

docs: add contributing guidelines #141

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

docs: add contributing guidelines

8f27ec7
Select commit
Loading
Failed to load commit list.
Open

docs: add contributing guidelines #141

docs: add contributing guidelines
8f27ec7
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jun 20, 2024 in 5m 9s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #141 docs: add contributing guidelines.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in two sequential stages.

Stage 1: test

This stage passed.

Job JDK OS State
1386.1 openjdk8 Linux passed

Stage 2: publish

This stage failed.

Job JDK OS State
1386.2 openjdk8 Linux failed

Build Configuration

Build Option Setting
Language Java
Operating System Linux (Bionic)
JDK Version openjdk8
Build Configuration
{
  "language": "java",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "addons": {
    "firefox": "latest",
    "apt": {
      "packages": [
        "firefox-geckodriver"
      ]
    }
  },
  "jdk": [
    "openjdk8"
  ],
  "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/"
    ]
  },
  "if": "tag IS blank",
  "jobs": {
    "include": [
      {
        "script": [
          "./gradlew markdown",
          "test -z \"$(git diff --name-only | grep '^README.md$')\"",
          "./gradlew check",
          "./gradlew jacocoTestReport",
          "bash <(curl -s https://codecov.io/bash) -cF test",
          "./gradlew jacocoIntegrationReport",
          "bash <(curl -s https://codecov.io/bash) -cF integration"
        ]
      },
      {
        "stage": "publish",
        "jdk": "openjdk8",
        "script": [
          "git config --global user.email \"[email protected]\"",
          "git config --global user.name \"Travis CI User\"",
          "export SDK_VERSION=$(cat gradle.properties | grep -E '^libVersion=.*$' | sed 's/^libVersion=//')",
          "if [ \"${TRAVIS_BRANCH}\" = \"master\" ]; then git tag -a \"v${SDK_VERSION}\" -m \"Travis Generated Tag\"; fi"
        ],
        "before_deploy": [
          "export ORG_GRADLE_PROJECT_signingKey=\"$(echo $ORG_GRADLE_PROJECT_signingKey_encoded | base64 -d)\""
        ],
        "deploy": [
          {
            "provider": "script",
            "skip_cleanup": true,
            "script": "./gradlew publish closeAndReleaseStagingRepository && echo -e \"machine github.com\\n  login $GH_TOKEN\" >> ~/.netrc && git push origin \"v${SDK_VERSION}\"",
            "on": {
              "branch": [
                "master"
              ]
            }
          }
        ]
      }
    ]
  }
}