Skip to content

Commit 991ad1b

Browse files
authored
Merge pull request #169 from SethTisue/tweak-for-2.13.x
2.11/2.12 -> 2.13 throughout
2 parents 0218447 + 0ba49aa commit 991ad1b

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ before_install:
88
language: scala
99
jdk: oraclejdk8
1010

11+
# although this is the 2.13.x branch, we don't have any 2.13 scala-dist
12+
# artifacts to depend on yet. so for now, just keep using 2.12.0
1113
script:
1214
- sbt -Dproject.version=2.12.0 s3Upload::mappings
1315

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# The Scala 2.12.x Distribution
1+
# The Scala 2.13.x Distribution
22

33
This project morphs the `"org.scala-lang" % "scala-dist" % $version` maven artifact
44
into a Scala `$version` distribution (zip, tar.gz, deb, rpm, and msi).
@@ -28,8 +28,6 @@ We welcome new maintainers!
2828
If you're looking for the editor configurations that used to be in the tool-support directory, please see https://github.com/scala/scala-tool-support.
2929
They were moved out because they no longer ship with the Scala distribution. (New maintainers are welcome on the scala-tool-support project!)
3030

31-
The specification also used to be in this repo -- it is now a part of the main repository over at [scala/scala](https://github.com/scala/scala/tree/2.11.x/spec).
32-
3331
## Windows VM
3432
- install Windows 7 professional N 64-bit, ensure network access to GitHub
3533
- install Oracle Java 6 JDK
@@ -47,5 +45,4 @@ Please read the [Scala Pull Request Policy](https://github.com/scala/scala/wiki/
4745
and sign the [CLA](http://www.lightbend.com/contribute/cla/scala).
4846

4947
The branching structure mimics that of [scala/scala](https://github.com/scala/scala):
50-
branches for 2.11.x, 2.12.x, etc.
51-
48+
branches for 2.11.x, 2.12.x, 2.13.x, etc.

scripts/jobs/release/package/generic

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @pre current directory == repo root
22
# must run on both windows (cygwin) and linux
33

4-
# invoked from scala-release-2.11.x-[unix|windows]
4+
# invoked from scala-release-2.13.x-[unix|windows]
55

66
# uses the following env vars:
77
# - WORKSPACE, JAVA_OPTS (jenkins standard)
@@ -16,7 +16,7 @@ repositoriesFile="$WORKSPACE/conf/repositories"
1616

1717
tags="$(git tag --points-at HEAD)"
1818

19-
# version is set by the scala-release-2.11.x-dist build flow, make sure it's consistent with the tag
19+
# version is set by the scala-release-2.13.x-dist build flow, make sure it's consistent with the tag
2020
# this is also a backstop for https://github.com/sbt/sbt-git/issues/35
2121
# ignore when there is no version (job is running outside of the flow)
2222
[[ -z $sbtDistVersionOverride ]] && [[ -n $version ]] && if [ "$tags" != "v$version" ]; then

scripts/jobs/release/website/archives

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ declare -a sshCharaArgs="$sshCharaArgs"
55
url="http://downloads.lightbend.com/scala/$version"
66

77
if [[ "$version" =~ .*-nightly ]]
8-
then archivesDir="~linuxsoft/archives/scala/nightly/2.12.x"
8+
then archivesDir="~linuxsoft/archives/scala/nightly/2.13.x"
99
else archivesDir="~linuxsoft/archives/scala"
1010
fi
1111

scripts/jobs/release/website/update-api

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33
declare -a sshCharaArgs="$sshCharaArgs"
44

55
if [[ "$version" =~ .*-nightly ]]
6-
then archivesDir="~linuxsoft/archives/scala/nightly/2.12.x"
6+
then archivesDir="~linuxsoft/archives/scala/nightly/2.13.x"
77
else archivesDir="~linuxsoft/archives/scala"
88
fi
99

10-
echo "Symlinking $archivesDir/api/$version to $archivesDir/api/2.12.x."
10+
echo "Symlinking $archivesDir/api/$version to $archivesDir/api/2.13.x."
1111

12-
ssh "${sshCharaArgs[@]}" "cd $archivesDir/api/ ; [[ -d $version ]] && ln -sfn $version 2.12.x"
12+
ssh "${sshCharaArgs[@]}" "cd $archivesDir/api/ ; [[ -d $version ]] && ln -sfn $version 2.13.x"
1313

1414
# needs to run once on new major release:
15-
# ssh "${sshCharaArgs[@]}" "cd $archivesDir/api/ ; [[ -d $version ]] && ln -sfn 2.12.x current"
16-
15+
# ssh "${sshCharaArgs[@]}" "cd $archivesDir/api/ ; [[ -d $version ]] && ln -sfn 2.13.x current"

0 commit comments

Comments
 (0)