-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from renatocaval/fix-travis-scripts-with-stages
Fix Travis builds (using stages)
- Loading branch information
Showing
4 changed files
with
59 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
sbt "++ $TRAVIS_SCALA_VERSION test" || travis_terminate 1 | ||
sbt +publishLocal plugin/test plugin/scripted || travis_terminate 1 | ||
# Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com> | ||
|
||
sbt "++ $TRAVIS_SCALA_VERSION test" || exit 1 | ||
sbt +publishLocal plugin/test plugin/scripted || exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
sbt ++$TRAVIS_SCALA_VERSION validateCode || travis_terminate 1 | ||
sbt "++$TRAVIS_SCALA_VERSION mimaReportBinaryIssues" || travis_terminate 1 | ||
# Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com> | ||
|
||
sbt ";+validateCode;+mimaReportBinaryIssues" || exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
pushd docs || travis_terminate 1 | ||
sbt evaluateSbtFiles validateDocs headerCheck test:headerCheck test || travis_terminate 1 | ||
# Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com> | ||
|
||
pushd docs || exit 1 | ||
sbt evaluateSbtFiles validateDocs headerCheck test:headerCheck test || exit 1 | ||
popd |