Skip to content

Commit

Permalink
Merge pull request #1 from palantir/rfink/circleci
Browse files Browse the repository at this point in the history
Switch from Travis to CircleCI
  • Loading branch information
uschi2000 committed Feb 25, 2016
2 parents 34b1ee3 + cfca19b commit fb7915c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 22 deletions.
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

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

general:
artifacts:
- syntactic-paths/build/libs

test:
override:
- ./gradlew build

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

bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
user = System.env.BINTRAY_USER
key = System.env.BINTRAY_KEY
pkg {
repo = 'maven'
repo = 'releases'
name = 'syntactic-paths'
userOrg = 'uschi2000'
userOrg = 'palantir'
licenses = ['Apache-2.0']
publications = ['bintray']
}
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/uschi2000/syntactic-paths.svg)](https://travis-ci.org/uschi2000/syntactic-paths)
[![CircleCI Build Status](https://circleci.com/gh/palantir/syntactic-paths/tree/develop.svg)](https://circleci.com/gh/palantir/syntactic-paths)
[![Download](https://api.bintray.com/packages/palantir/releases/syntactic-paths/images/download.svg) ](https://bintray.com/palantir/releases/syntactic-paths/_latestVersion)

Syntactic Path Library
======================
Expand Down

0 comments on commit fb7915c

Please sign in to comment.