File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -348,12 +348,9 @@ jobs:
348
348
- name : Add SBT proxy repositories
349
349
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
350
350
351
- - name : Test sbt 1.4.x
351
+ - name : Test sbt
352
352
run : ./project/scripts/sbt "sbt-dotty/scripted; sbt-community-build/scripted"
353
353
354
- - name : Test sbt 1.5.x
355
- run : ./project/scripts/sbt "set \`sbt-dotty\`/scriptedSbt := \"1.5.0-RC1\"; sbt-dotty/scripted sbt-dotty/*"
356
-
357
354
test_java8 :
358
355
runs-on : [self-hosted, Linux]
359
356
container :
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ final case class SbtCommunityProject(
124
124
case Some (ivyHome) => List (s " -Dsbt.ivy.home= $ivyHome" )
125
125
case _ => Nil
126
126
extraSbtArgs ++ sbtProps ++ List (
127
- " -sbt-version" , " 1.4.9 " ,
127
+ " -sbt-version" , " 1.5.0-RC2 " ,
128
128
" -Dsbt.supershell=false" ,
129
129
s " -Ddotty.communitybuild.dir= $communitybuildDir" ,
130
130
s " --addPluginSbtFile= $sbtPluginFilePath"
@@ -140,7 +140,7 @@ object projects:
140
140
141
141
private def forceDoc (projects : String * ) =
142
142
projects.map(project =>
143
- s """ ;set $project/Compile/doc/sources ++= ( $project/Compile/doc/tastyFiles).value ; $project/doc """
143
+ s """ ;set $project/Compile/doc/sources ++= ( $project/Compile/doc/dotty.tools.sbtplugin.DottyPlugin.autoImport. tastyFiles).value ; $project/doc """
144
144
).mkString(" " )
145
145
146
146
private def aggregateDoc (in : String )(projects : String * ) =
Original file line number Diff line number Diff line change @@ -1243,6 +1243,9 @@ object Build {
1243
1243
baseDirectory.value / " ../language-server/src/dotty/tools/languageserver/config" ,
1244
1244
sbtTestDirectory := baseDirectory.value / " sbt-test" ,
1245
1245
1246
+ // ensure that sbt-dotty is built on sbt 1.4
1247
+ pluginCrossBuild / sbtVersion := " 1.4.9" ,
1248
+
1246
1249
// The batch mode accidentally became the default with no way to disable
1247
1250
// it in sbt 1.4 (https://github.com/sbt/sbt/issues/5913#issuecomment-716003195).
1248
1251
// We enable it explicitly here to make it clear that we're using it.
Original file line number Diff line number Diff line change 1
- sbt.version =1.4.9
1
+ sbt.version =1.5.0-RC2
You can’t perform that action at this time.
0 commit comments