File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # `-Dsbt.io.jdktimestamps=true` is used to work around
2+ # this bug in sbt 1.9.8: https://github.com/sbt/sbt/issues/7463
3+ # we can remove it once we're on an sbt version with a fix.
4+
15version : ~> 1.0 # needed for imports
26
37import : scala/scala-dev:travis/default.yml
4044 name : " JDK 8 pr validation"
4145 if : type = pull_request
4246 script :
43- - sbt -Dsbt.scala.version=2.12.18 -warn setupPublishCore generateBuildCharacterPropertiesFile headerCheck publishLocal
47+ - sbt -Dsbt.io.jdktimestamps=true -Dsbt. scala.version=2.12.18 -warn setupPublishCore generateBuildCharacterPropertiesFile headerCheck publishLocal
4448 - STARR=`cat buildcharacter.properties | grep ^maven.version.number | cut -d= -f2` && echo $STARR
45- - sbt -Dsbt.scala.version=2.12.18 -Dstarr.version=$STARR -warn setupValidateTest test:compile info testAll
49+ - sbt -Dsbt.io.jdktimestamps=true -Dsbt. scala.version=2.12.18 -Dstarr.version=$STARR -warn setupValidateTest test:compile info testAll
4650
4751 # build the spec using jekyll
4852 - stage : build
Original file line number Diff line number Diff line change 1- sbt.version =1.9.7
1+ sbt.version =1.9.8
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ mkdir -p "$WORKSPACE/resolutionScratch_"
1717SBT_VERSION=`grep sbt.version $WORKSPACE/project/build.properties | sed -n 's/sbt.version=\(.*\)/\1/p'`
1818
1919SBT_CMD=${SBT_CMD-sbt}
20- SBT_CMD="$SBT_CMD -Dsbt.scala.version=2.12.18 -sbt-version $SBT_VERSION"
20+ # the jdktimestamps thing is to work around https://github.com/sbt/sbt/issues/7463 --
21+ # it can be removed again once we're on an sbt version with a fix
22+ SBT_CMD="$SBT_CMD -Dsbt.io.jdktimestamps=true -Dsbt.scala.version=2.12.18 -sbt-version $SBT_VERSION"
2123
2224# repo to publish builds
2325integrationRepoUrl=${integrationRepoUrl-"https://scala-ci.typesafe.com/artifactory/scala-integration/"}
You can’t perform that action at this time.
0 commit comments