Skip to content

Commit 7d2abb8

Browse files
All artefacts renamed from dotty to scala3
packArchiveName changed to scala3- Correctly name SBT plugin Update Windows CI to use the new naming scheme
1 parent 63771ac commit 7d2abb8

File tree

4 files changed

+147
-147
lines changed

4 files changed

+147
-147
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Test
9595
run: |
96-
./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test;sjsCompilerTests/test ;sbt-dotty/scripted scala2-compat/* ;configureIDE"
96+
./project/scripts/sbt ";scala3-bootstrapped/compile ;scala3-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test;sjsCompilerTests/test ;sbt-dotty/scripted scala2-compat/* ;configureIDE"
9797
./project/scripts/bootstrapCmdTests
9898
9999
@@ -116,7 +116,7 @@ jobs:
116116
uses: actions/checkout@v2
117117

118118
- name: Test
119-
run: sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test"
119+
run: sbt ";scala3-bootstrapped/compile ;scala3-bootstrapped/test"
120120
shell: cmd
121121

122122
- name: Scala.js Test
@@ -298,7 +298,7 @@ jobs:
298298

299299
- name: Publish Nightly
300300
run: |
301-
./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease"
301+
./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeBundleRelease"
302302
303303
nightly_documentation:
304304
runs-on: [self-hosted, Linux]
@@ -404,7 +404,7 @@ jobs:
404404
run: |
405405
./project/scripts/sbt dist/packArchive
406406
sha256sum dist/target/dotty-* > dist/target/sha256sum.txt
407-
./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease"
407+
./project/scripts/sbtPublish ";project scala3-bootstrapped ;publishSigned ;sonatypeBundleRelease"
408408
echo "name=RELEASE_TAG::${GITHUB_REF#*refs/tags/}" >> $GITHUB_ENV
409409
410410
- name: Create GitHub Release

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ bench/compile.txt
8282
# The vscode app for testing
8383
vscode-dotty/.vscode-test
8484

85-
community-build/dotty-bootstrapped.version
85+
community-build/scala3-bootstrapped.version
8686
community-build/sbt-dotty-sbt
8787

8888
# Vulpix output files

build.sbt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
val dotty = Build.dotty
2-
val `dotty-bootstrapped` = Build.`dotty-bootstrapped`
3-
val `dotty-interfaces` = Build.`dotty-interfaces`
4-
val `dotty-doc` = Build.`dotty-doc`
5-
val `dotty-doc-bootstrapped` = Build.`dotty-doc-bootstrapped`
6-
val `dotty-compiler` = Build.`dotty-compiler`
7-
val `dotty-compiler-bootstrapped` = Build.`dotty-compiler-bootstrapped`
8-
val `dotty-library` = Build.`dotty-library`
9-
val `dotty-library-bootstrapped` = Build.`dotty-library-bootstrapped`
10-
val `dotty-library-bootstrappedJS` = Build.`dotty-library-bootstrappedJS`
11-
val `dotty-sbt-bridge` = Build.`dotty-sbt-bridge`
12-
val `dotty-sbt-bridge-tests` = Build.`dotty-sbt-bridge-tests`
13-
val `dotty-staging` = Build.`dotty-staging`
14-
val `dotty-tasty-inspector` = Build.`dotty-tasty-inspector`
15-
val `dotty-language-server` = Build.`dotty-language-server`
16-
val `dotty-bench` = Build.`dotty-bench`
17-
val `dotty-bench-bootstrapped` = Build.`dotty-bench-bootstrapped`
1+
val scala3 = Build.scala3
2+
val `scala3-bootstrapped` = Build.`scala3-bootstrapped`
3+
val `scala3-interfaces` = Build.`scala3-interfaces`
4+
val `scala3-doc` = Build.`scala3-doc`
5+
val `scala3-doc-bootstrapped` = Build.`scala3-doc-bootstrapped`
6+
val `scala3-compiler` = Build.`scala3-compiler`
7+
val `scala3-compiler-bootstrapped` = Build.`scala3-compiler-bootstrapped`
8+
val `scala3-library` = Build.`scala3-library`
9+
val `scala3-library-bootstrapped` = Build.`scala3-library-bootstrapped`
10+
val `scala3-library-bootstrappedJS` = Build.`scala3-library-bootstrappedJS`
11+
val `scala3-sbt-bridge` = Build.`scala3-sbt-bridge`
12+
val `scala3-sbt-bridge-tests` = Build.`scala3-sbt-bridge-tests`
13+
val `scala3-staging` = Build.`scala3-staging`
14+
val `scala3-tasty-inspector` = Build.`scala3-tasty-inspector`
15+
val `scala3-language-server` = Build.`scala3-language-server`
16+
val `scala3-bench` = Build.`scala3-bench`
17+
val `scala3-bench-bootstrapped` = Build.`scala3-bench-bootstrapped`
1818
val `tasty-core` = Build.`tasty-core`
1919
val `tasty-core-bootstrapped` = Build.`tasty-core-bootstrapped`
2020
val `tasty-core-scala2` = Build.`tasty-core-scala2`
21-
val `dotty-tastydoc` = Build.`dotty-tastydoc`
22-
val `dotty-tastydoc-input` = Build.`dotty-tastydoc-input`
23-
val `dotty-bench-run` = Build.`dotty-bench-run`
21+
val `scala3-tastydoc` = Build.`scala3-tastydoc`
22+
val `scala3-tastydoc-input` = Build.`scala3-tastydoc-input`
23+
val `scala3-bench-run` = Build.`scala3-bench-run`
2424
val `scala-library` = Build.`scala-library`
2525
val `scala-compiler` = Build.`scala-compiler`
2626
val `scala-reflect` = Build.`scala-reflect`

0 commit comments

Comments
 (0)