summaryrefslogtreecommitdiff
path: root/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-31 22:56:45 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-01 10:10:19 -0800
commitcf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1 (patch)
treef3897463b6f55019f2bbd59ba5cff73cf0fb571f /scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
parent6996c01a391cb9aaa27268dd1f0cf0a1749ade21 (diff)
downloadmill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.tar.gz
mill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.tar.bz2
mill-cf5fb5fdfd477e0bb4ffa0e4fec3a8ec01bf5cf1.zip
Split Acyclic/Jawn/BetterFiles tests into their own `integration/` test suite.
Those tests now download a snapshot of the relevant git repo rather than vendoring the files, and use a bare `build.sc` instead of having the build object be included in the test classpath. Tests pass using `sbt integration/test`, but `mill integration.test` still doesn't work
Diffstat (limited to 'scalalib/src/test/resource/jawn/project/ReleaseHelper.scala')
-rw-r--r--scalalib/src/test/resource/jawn/project/ReleaseHelper.scala34
1 files changed, 0 insertions, 34 deletions
diff --git a/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala b/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
deleted file mode 100644
index 354d6506..00000000
--- a/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
+++ /dev/null
@@ -1,34 +0,0 @@
-import sbt._
-import sbt.Keys._
-import sbt.complete.Parser
-
-object ReleaseHelper {
-
- /** Invoke a command and carry out remaining commands until completion.
- *
- * This is necessary because sbt-release's releaseStepCommand does not
- * execute remaining commands, which sbt-doge relies on.
- *
- * Based on https://github.com/playframework/playframework/blob/master/framework/project/Release.scala
- *
- * NOTE: This can be removed in favor of https://github.com/sbt/sbt-release/pull/171 if/when merged upstream
- */
- def runCommandAndRemaining(command: String): State => State = { originalState =>
- val originalRemaining = originalState.remainingCommands
-
- @annotation.tailrec
- def runCommand(command: String, state: State): State = {
- val newState = Parser.parse(command, state.combinedParser) match {
- case Right(cmd) => cmd()
- case Left(msg) => throw sys.error(s"Invalid programmatic input:\n$msg")
- }
- if (newState.remainingCommands.isEmpty) {
- newState
- } else {
- runCommand(newState.remainingCommands.head, newState.copy(remainingCommands = newState.remainingCommands.tail))
- }
- }
-
- runCommand(command, originalState.copy(remainingCommands = Nil)).copy(remainingCommands = originalRemaining)
- }
-}