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 - Branch succeeded Dec 8, 2023 in 4m 51s

Build Passed

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

Details

This is a normal build for the add-contributing branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

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

Stage 1: test

This stage passed.

Job JDK OS State
1385.1 openjdk8 Linux passed

Stage 2: publish

This stage passed.

Job JDK OS State
1385.2 openjdk8 Linux passed

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"
              ]
            }
          }
        ]
      }
    ]
  }
}