Skip to content

Commit 318ed6a

Browse files
committed
Add Travis build matrix configuration for concurrent builds with different SBT versions
1 parent 20c9c75 commit 318ed6a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
language: scala
22

3-
script: sbt ^scripted
3+
script: sbt ++$TRAVIS_SCALA_VERSION ^^$TRAVIS_SBT_VERSION scripted
44

5-
scala:
6-
- "2.10.6"
5+
matrix:
6+
include:
7+
- scala: 2.10.6
8+
env: TRAVIS_SBT_VERSION="0.13.16"
9+
- scala: 2.12.3
10+
env: TRAVIS_SBT_VERSION="1.0.0-RC3"
711

812
before_cache:
913
- find $HOME/.sbt -name "*.lock" | xargs rm

0 commit comments

Comments
 (0)