aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-04-10 22:27:38 -0700
committerJakob Odersky <jakob@odersky.com>2018-04-10 22:30:56 -0700
commitcf706e6af1e9d16cf69877a33aec4a9d64daa6db (patch)
treebc019f4880b87a67ce65c396a4c64b5cb94d4928 /.ci
parent8512f1ed377c5f1d20fddd5f536c071523f2f0cd (diff)
downloadsbt-gpg-cf706e6af1e9d16cf69877a33aec4a9d64daa6db.tar.gz
sbt-gpg-cf706e6af1e9d16cf69877a33aec4a9d64daa6db.tar.bz2
sbt-gpg-cf706e6af1e9d16cf69877a33aec4a9d64daa6db.zip
Configure Travis CI
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/build38
-rw-r--r--.ci/sec.gpg.encbin0 -> 880 bytes
2 files changed, 38 insertions, 0 deletions
diff --git a/.ci/build b/.ci/build
new file mode 100755
index 0000000..4c1f282
--- /dev/null
+++ b/.ci/build
@@ -0,0 +1,38 @@
+#!/bin/bash
+set -o errexit
+set -o nounset
+set -o verbose
+
+sbt test
+
+# Automatic publishing for tags that start with `v<digit>`
+if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_TAG" =~ ^v[0-9].* ]]; then
+ # Setup gpg keys
+ gpg --keyserver keyserver.ubuntu.com --recv-keys "2B50AAFF11989ECC8531EB4A7C921C6769797655"
+ openssl aes-256-cbc \
+ -K "$encrypted_4db0106f6709_key" \
+ -iv "$encrypted_4db0106f6709_iv" \
+ -in .ci/sec.gpg.enc \
+ -out sec.gpg \
+ -d
+ gpg --import sec.gpg
+
+ # Setup publishing
+ cat <<-EOF > sonatype.sbt
+ credentials in Global += Credentials(
+ "GnuPG Key ID",
+ "gpg",
+ "2B50AAFF11989ECC8531EB4A7C921C6769797655",
+ "ignored"
+ )
+ credentials in Global += Credentials(
+ "Sonatype Nexus Repository Manager",
+ "oss.sonatype.org",
+ "8VNUX6+2",
+ "$SONATYPE_PASS"
+ )
+ EOF
+
+ # Build and publish
+ sbt publish sonatypeRelease
+fi
diff --git a/.ci/sec.gpg.enc b/.ci/sec.gpg.enc
new file mode 100644
index 0000000..47942c7
--- /dev/null
+++ b/.ci/sec.gpg.enc
Binary files differ