From 9c20940bc8a2fb352cb0468b9d84994aae83f9f2 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Sun, 22 Sep 2019 15:04:36 -0400 Subject: Remove Travis CI config --- .ci/build | 46 ---------------------------------------------- .ci/sec.gpg.enc | Bin 3616 -> 0 bytes 2 files changed, 46 deletions(-) delete mode 100755 .ci/build delete mode 100644 .ci/sec.gpg.enc (limited to '.ci') diff --git a/.ci/build b/.ci/build deleted file mode 100755 index f3a8cff..0000000 --- a/.ci/build +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -set -o errexit -set -o nounset -set -o verbose - -sbt \ - scalafmtCheck \ - +commando/test \ - +commandoJS/test \ - +commandoNative/test - -# Automatic publishing for tags that start with `v` -if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_TAG" =~ ^v[0-9].* ]]; then - # Setup gpg keys - gpg --keyserver keyserver.ubuntu.com --recv-keys "DC6A9A5E884B2D680E080467E107A4A6CF561C67" - openssl aes-256-cbc \ - -K "$encrypted_2d5a3cdf1345_key" \ - -iv "$encrypted_2d5a3cdf1345_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", - "DC6A9A5E884B2D680E080467E107A4A6CF561C67", - "ignored" - ) - credentials in Global += Credentials( - "Sonatype Nexus Repository Manager", - "oss.sonatype.org", - "8VNUX6+2", - "$SONATYPE_PASS" - ) - EOF - - # Build and publish - sbt \ - +commando/publish \ - +commandoJS/publish \ - +commandoNative/publish \ - sonatypeRelease -fi diff --git a/.ci/sec.gpg.enc b/.ci/sec.gpg.enc deleted file mode 100644 index b6531a4..0000000 Binary files a/.ci/sec.gpg.enc and /dev/null differ -- cgit v1.2.3