Skip to content

Commit

Permalink
Merge pull request #61 from palantir/rfink/circle
Browse files Browse the repository at this point in the history
Switch from Travis to Circle
  • Loading branch information
uschi2000 committed Feb 19, 2016
2 parents 3683418 + 39a4b0d commit fd493e6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 20 deletions.
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

22 changes: 22 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
machine:
java:
version: oraclejdk7
environment:
TERM: dumb

general:
artifacts:
- error-handling/build/libs
- http-clients/build/libs
- http-servers/build/libs
- ssl-config/build/libs

test:
override:
- ./gradlew build

deployment:
release:
tag: /[0-9]+(\.[0-9]+)+(-rc[0-9]+)?/
commands:
- ./gradlew -i bintrayUpload
4 changes: 2 additions & 2 deletions gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ publishing {
}

bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
user = System.env.BINTRAY_USER
key = System.env.BINTRAY_KEY
pkg {
repo = 'releases'
name = 'http-remoting'
Expand Down

0 comments on commit fd493e6

Please sign in to comment.