File tree 4 files changed +3
-45
lines changed
4 files changed +3
-45
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
language : scala
2
2
3
- # Needed for openjdk6
4
- dist : precise
5
- sudo : required
6
- addons :
7
- hosts :
8
- - localhost
9
- hostname : localhost.local
10
-
11
3
jdk :
12
- - openjdk6
13
4
- oraclejdk8
14
5
- openjdk11
15
6
16
7
scala :
17
- - 2.11.12
18
8
- 2.12.8
19
9
- 2.13.0-RC1
20
10
@@ -38,26 +28,8 @@ matrix:
38
28
env : SCALAJS_VERSION=0.6.27
39
29
- jdk : openjdk11
40
30
env : SCALAJS_VERSION=1.0.0-M7
41
- - scala : 2.11.12
42
- env : SCALAJS_VERSION=1.0.0-M7
43
- - scala : 2.11.12
44
- jdk : oraclejdk8
45
- - scala : 2.11.12
46
- jdk : openjdk11
47
- - scala : 2.12.8
48
- jdk : openjdk6
49
- - scala : 2.13.0-RC1
50
- jdk : openjdk6
51
-
52
- before_script :
53
- - nvm install 8
54
- - nvm use 8
55
31
56
32
script :
57
- # work around https://github.com/travis-ci/travis-ci/issues/9713
58
- - if [[ $JAVA_HOME = *java-6* ]]; then jdk_switcher use openjdk6; fi
59
- - java -version
60
- - node -v
61
33
- admin/build.sh
62
34
63
35
before_cache :
Original file line number Diff line number Diff line change 16
16
# of the existing tag. Then a new tag can be created for that commit, e.g., `v1.2.3#2.13.0-M5`.
17
17
# Everything after the `#` in the tag name is ignored.
18
18
19
- if [[ " $TRAVIS_JDK_VERSION " == " openjdk6" && " $TRAVIS_SCALA_VERSION " =~ 2\. 11\. .* \
20
- || " $TRAVIS_JDK_VERSION " == " oraclejdk8" && " $TRAVIS_SCALA_VERSION " =~ 2\. 1[23]\. .* ]]; then
19
+ if [[ " $TRAVIS_JDK_VERSION " == " oraclejdk8" && " $TRAVIS_SCALA_VERSION " =~ 2\. 1[23]\. .* ]]; then
21
20
RELEASE_COMBO=true;
22
21
fi
23
22
@@ -52,9 +51,4 @@ if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then
52
51
fi
53
52
fi
54
53
55
- # Maven Central and Bintray are unreachable over HTTPS
56
- if [[ " $TRAVIS_JDK_VERSION " == " openjdk6" ]]; then
57
- SBTOPTS=" -Dsbt.override.build.repos=true -Dsbt.repository.config=./.sbtrepos"
58
- fi
59
-
60
- sbt $SBTOPTS " ++$TRAVIS_SCALA_VERSION " " $publishVersion " " $projectPrefix /clean" " $projectPrefix /test" " $projectPrefix /publishLocal" " $publishTask "
54
+ sbt " ++$TRAVIS_SCALA_VERSION " " $publishVersion " " $projectPrefix /clean" " $projectPrefix /test" " $projectPrefix /publishLocal" " $publishTask "
Original file line number Diff line number Diff line change 1
1
import sbtcrossproject .{crossProject , CrossType }
2
2
import ScalaModulePlugin ._
3
3
4
- crossScalaVersions in ThisBuild := List (" 2.12.8" , " 2.11.12 " , " 2. 13.0-RC1" )
4
+ crossScalaVersions in ThisBuild := List (" 2.12.8" , " 2.13.0-RC1" )
5
5
6
6
lazy val xml = crossProject(JSPlatform , JVMPlatform )
7
7
.withoutSuffixFor(JVMPlatform )
You can’t perform that action at this time.
0 commit comments