aboutsummaryrefslogtreecommitdiff
path: root/.travis/build
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-10-29 14:48:05 -0700
committerJakob Odersky <jakob@odersky.com>2016-10-29 16:36:24 -0700
commitfff54100d03eb76502b8856ef2883461bfed2a1f (patch)
treec84dd15ee3e73bc87402f6a437326f0b2a016c5c /.travis/build
parent719545d667d393a5f72f72405979faba37f8c0d6 (diff)
downloadsbt-jni-fff54100d03eb76502b8856ef2883461bfed2a1f.tar.gz
sbt-jni-fff54100d03eb76502b8856ef2883461bfed2a1f.tar.bz2
sbt-jni-fff54100d03eb76502b8856ef2883461bfed2a1f.zip
Automate publishing with travis-ci
Diffstat (limited to '.travis/build')
-rwxr-xr-x.travis/build32
1 files changed, 32 insertions, 0 deletions
diff --git a/.travis/build b/.travis/build
new file mode 100755
index 0000000..ccd2a97
--- /dev/null
+++ b/.travis/build
@@ -0,0 +1,32 @@
+#!/bin/bash
+set -ev
+
+sbt test-plugin
+
+# Automatic publishing for tags that start with `v<digit>`
+if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_TAG" =~ ^v[0-9].* ]]; then
+ # Import gpg keys (download public key to check for renewal)
+ gpg --keyserver keyserver.ubuntu.com --recv-keys "DC6A9A5E884B2D680E080467E107A4A6CF561C67"
+ openssl aes-256-cbc -K $encrypted_406cb857227a_key -iv $encrypted_406cb857227a_iv -in .travis/sec.gpg.enc -out sec.gpg -d
+ gpg --import sec.gpg
+
+ # Setup sbt-pgp plugin
+ cat <<EOF > project/gpg.sbt
+ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
+EOF
+ cat <<EOF > gpg.sbt
+ pgpSigningKey in Global := Some(0xE107A4A6CF561C67l)
+ useGpgAgent in Global := true
+ useGpg in Global := true
+EOF
+
+ # Setup bitray publishing plugin
+ cat <<EOF > project/bintray.sbt
+ addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
+EOF
+ mkdir ~/.bintray
+ openssl aes-256-cbc -K $encrypted_9971283457ae_key -iv $encrypted_9971283457ae_iv -in .travis/bintray.enc -out ~/.bintray/.credentials -d
+
+ # Publish
+ sbt +publishSigned
+fi