Skip to content

Commit

Permalink
Disable scripted for 1.x..
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Aug 2, 2017
1 parent 304311d commit 4e5c20b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ def toSbtPlugin(m: ModuleID) = Def.setting(
)
mimaPreviousArtifacts := Set.empty // Set(toSbtPlugin("com.dwijnand" % "sbt-project-graph" % "1.0.0").value)

TaskKey[Unit]("verify") := Def.sequential(test in Test, scripted.toTask(""), mimaReportBinaryIssues).value
// TaskKey[Unit]("verify") := Def.sequential(test in Test, scripted.toTask(""), mimaReportBinaryIssues).value

cancelable in Global := true
4 changes: 3 additions & 1 deletion project/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

if [[ "$TRAVIS_SBT_VERSION" == "0.13.x" ]]; then
SWITCH_SBT_VERSION=""
SCRIPTED="scripted"
else
SWITCH_SBT_VERSION="^^$TRAVIS_SBT_VERSION"
SCRIPTED=""
fi

[[ "$TRAVIS_PULL_REQUEST" == "false"
Expand All @@ -30,4 +32,4 @@ else
PUBLISH=publishLocal
fi

sbt "$SWITCH_SBT_VERSION" verify "$PUBLISH"
sbt "$SWITCH_SBT_VERSION" test "$SCRIPTED" mimaReportBinaryIssues "$PUBLISH"

0 comments on commit 4e5c20b

Please sign in to comment.