File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -282,9 +282,12 @@ jobs:
282
282
- name : Add SBT proxy repositories
283
283
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
284
284
285
- - name : Test
285
+ - name : Test sbt 1.4.x
286
286
run : ./project/scripts/sbt "sbt-dotty/scripted; sbt-community-build/scripted"
287
287
288
+ - name : Test sbt 1.5.x
289
+ run : ./project/scripts/sbt "set \`sbt-dotty\`/scriptedSbt := \"1.5.0-RC1\"; sbt-dotty/scripted sbt-dotty/*; sbt-community-build/scripted"
290
+
288
291
test_java8 :
289
292
runs-on : [self-hosted, Linux]
290
293
container :
Original file line number Diff line number Diff line change @@ -1191,6 +1191,9 @@ object Build {
1191
1191
baseDirectory.value / " ../language-server/src/dotty/tools/languageserver/config" ,
1192
1192
sbtTestDirectory := baseDirectory.value / " sbt-test" ,
1193
1193
1194
+ // build sbt-dotty with sbt 1.4.9 to make sure it is compatible with sbt 1.4.x
1195
+ pluginCrossBuild / sbtVersion := " 1.4.9" ,
1196
+
1194
1197
// The batch mode accidentally became the default with no way to disable
1195
1198
// it in sbt 1.4 (https://github.com/sbt/sbt/issues/5913#issuecomment-716003195).
1196
1199
// We enable it explicitly here to make it clear that we're using it.
You can’t perform that action at this time.
0 commit comments