docs: add contributing guidelines #141
Open
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"
]
}
}
]
}
]
}
}
Loading