mirror of https://github.com/sbt/sbt.git
Add util tests to the jdk8 build
The existing .travis.yml in the util project runs: mimaReportBinaryIssues scalafmtCheckAll whitesourceCheckPolicies test The first three are already handled by the first build in the matrix. I add the util tests to the first jdk11 build and the jdk8 build.
This commit is contained in:
parent
8bfae66b9d
commit
45a2cd5985
|
|
@ -5,10 +5,13 @@ language: scala
|
|||
env:
|
||||
global:
|
||||
- TRAVIS_JDK=adopt@1.11.0-1
|
||||
- SCALA_212=2.12.10
|
||||
- SCALA_213=2.13.1
|
||||
- UTIL_TESTS="utilCache/test;utilControl/test;utilInterface/test;utilLogging/test;utilPosition/test;utilRelation/test;utilScripted/test;utilTracking/test"
|
||||
# WHITESOURCE_PASSWORD=
|
||||
- secure: d3bu2KNwsVHwfhbGgO+gmRfDKBJhfICdCJFGWKf2w3Gv86AJZX9nuTYRxz0KtdvEHO5Xw8WTBZLPb2thSJqhw9OCm4J8TBAVqCP0ruUj4+aqBUFy4bVexQ6WKE6nWHs4JPzPk8c6uC1LG3hMuzlC8RGETXtL/n81Ef1u7NjyXjs=
|
||||
matrix:
|
||||
- SBT_CMD="mimaReportBinaryIssues ;scalafmtCheckAll ; scalafmtSbtCheck; headerCheck ;test:headerCheck ;whitesourceOnPush ;test:compile; publishLocal ;mainSettingsProj/test ;safeUnitTests ;otherUnitTests; doc"
|
||||
- SBT_CMD="mimaReportBinaryIssues ;scalafmtCheckAll ; scalafmtSbtCheck; headerCheck ;test:headerCheck ;whitesourceOnPush ;test:compile; publishLocal ;mainSettingsProj/test ;safeUnitTests ;otherUnitTests; doc; $UTIL_TESTS; ++$SCALA_213; $UTIL_TESTS"
|
||||
- SBT_CMD="scripted actions/* apiinfo/* compiler-project/* ivy-deps-management/* reporter/* tests/* watch/* classloader-cache/* package/*"
|
||||
- SBT_CMD="scripted dependency-management/* plugins/* project-load/* java/* run/* nio/*"
|
||||
- SBT_CMD="repoOverrideTest:scripted dependency-management/*; scripted source-dependencies/* project/*"
|
||||
|
|
@ -18,7 +21,7 @@ matrix:
|
|||
include:
|
||||
- env:
|
||||
- TRAVIS_JDK=adopt@1.8.0-222
|
||||
- SBT_CMD="scripted actions/* source-dependencies/*1of3 dependency-management/*1of4 java/*"
|
||||
- SBT_CMD="++$SCALA_213; $UTIL_TESTS; ++$SCALA_212; $UTIL_TESTS; scripted actions/* source-dependencies/*1of3 dependency-management/*1of4 java/*"
|
||||
|
||||
before_install:
|
||||
- curl -sL https://raw.githubusercontent.com/shyiko/jabba/0.11.0/install.sh | bash && . ~/.jabba/jabba.sh
|
||||
|
|
|
|||
Loading…
Reference in New Issue