summaryrefslogtreecommitdiff
path: root/ci/release.sh
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-25 22:33:23 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-26 00:00:29 -0800
commit2a59977d9c4aa23513d2c38a9fa151f9c11e8dc0 (patch)
tree6a16d7db4538e73c1fe53f2fda812f2d12e71cf8 /ci/release.sh
parent08e27d9b94e38f64f6680828c64ab3c0a8f5537f (diff)
downloadmill-2a59977d9c4aa23513d2c38a9fa151f9c11e8dc0.tar.gz
mill-2a59977d9c4aa23513d2c38a9fa151f9c11e8dc0.tar.bz2
mill-2a59977d9c4aa23513d2c38a9fa151f9c11e8dc0.zip
Delete SBT build, use Mill for CI & development
Also re-organize the test matrix to split out the unit & integration tests into 3 separate builds, and removing the integration tests from the `-dev` and `-mill` jobs. That should speed up the test run while running all tests and ensuring the dev/release assemblies work
Diffstat (limited to 'ci/release.sh')
-rwxr-xr-xci/release.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/ci/release.sh b/ci/release.sh
index a233ad4d..9072ce96 100755
--- a/ci/release.sh
+++ b/ci/release.sh
@@ -2,14 +2,12 @@
set -eux
-sbt bin/test:assembly
-
echo $GPG_PRIVATE_KEY_B64 | base64 --decode > gpg_key
gpg --import gpg_key
rm gpg_key
-target/bin/mill mill.scalalib.PublishModule/publishAll \
+mill mill.scalalib.PublishModule/publishAll \
lihaoyi:$SONATYPE_PASSWORD \
$GPG_PASSWORD \
__.publishArtifacts \
@@ -17,4 +15,4 @@ target/bin/mill mill.scalalib.PublishModule/publishAll \
true \
-target/bin/mill uploadToGithub $GITHUB_ACCESS_TOKEN
+mill uploadToGithub $GITHUB_ACCESS_TOKEN