-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
73 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# More details on how to configure the Travis build | ||
# https://docs.travis-ci.com/user/customizing-the-build/ | ||
|
||
language: java | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
#Skipping install step to avoid having Travis run arbitrary './gradlew assemble' task | ||
# https://docs.travis-ci.com/user/customizing-the-build/#Skipping-the-Installation-Step | ||
install: | ||
- true | ||
|
||
#Don't build tags | ||
branches: | ||
except: | ||
- /^v\d/ | ||
|
||
#Build and perform release (if needed) | ||
script: | ||
- ./gradlew build -s | ||
# Print output every minute to avoid travis timeout | ||
- while sleep 1m; do echo "=====[ $SECONDS seconds elapsed -- still running ]====="; done & | ||
- ./gradlew ciPerformRelease -s | ||
# Killing background sleep loop | ||
- kill %1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
shipkit { | ||
gitHub.repository = "linkedin/transport" | ||
|
||
gitHub.readOnlyAuthToken = "361a43a2b351e61e2243c5ea15792f33a3c9b467" | ||
|
||
// The GitHub write token is required for committing release notes and bumping up project version | ||
// Ensure that the release machine or Travis CI has this env variable exported | ||
gitHub.writeAuthToken = System.getenv("GH_WRITE_TOKEN") | ||
|
||
git.releasableBranchRegex = "master|release/.+" | ||
} | ||
|
||
allprojects { | ||
plugins.withId("org.shipkit.bintray") { | ||
|
||
//Bintray configuration is handled by JFrog Bintray Gradle Plugin | ||
//For reference see the official documentation: https://github.com/bintray/gradle-bintray-plugin | ||
bintray { | ||
|
||
// The Bintray API token is required to publish artifacts to Bintray | ||
// Ensure that the release machine or Travis CI has this env variable exported | ||
key = System.getenv("BINTRAY_API_KEY") | ||
|
||
pkg { | ||
repo = 'maven' | ||
user = 'smahadik' | ||
userOrg = 'linkedin-transport' | ||
name = 'transport' | ||
licenses = ['BSD 2-Clause'] | ||
labels = ['transport', 'UDF', 'user defined functions', 'portable'] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#Version of the produced binaries. This file is intended to be checked-in. | ||
#It will be automatically bumped by release automation. | ||
version=0.0.36 |