Skip to content

Commit

Permalink
Cross-build for 2.13.0-M5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Mar 26, 2019
1 parent bda0926 commit 57f849c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ matrix:
jdk: oraclejdk8
scala: 2.12.8

- stage: build
env: CI_SCRIPT="mill -i unitTest"
jdk: oraclejdk8
scala: 2.13.0-M5

- stage: build
env: CI_SCRIPT="mill -i integrationTest"
jdk: oraclejdk8
Expand All @@ -38,6 +43,11 @@ matrix:
jdk: oraclejdk8
scala: 2.12.8

- stage: build
env: CI_SCRIPT="mill -i integrationTest"
jdk: oraclejdk8
scala: 2.13.0-M5


# Everything worked, *then* kick off a release
- stage: release
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ environment:
matrix:
- JAVA_OPTS: -Dfile.encoding=UTF8
JAVA_HOME: C:\Program Files\Java\jdk9
TEST_TASKS: ops[2.11.12].test terminal[2.12.8].test amm.repl[2.12.8].test
TEST_TASKS: ops[2.11.12].test terminal[2.12.8].test amm.repl[2.12.8].test terminal[2.13.0-M5].test amm.repl[2.13.0-M5].test

- JAVA_OPTS: -Dfile.encoding=UTF8
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
TEST_TASKS: amm[2.11.12].test integration[2.12.8].test
TEST_TASKS: amm[2.11.12].test integration[2.12.8].test integration[2.13.0-M5].test

install:
- SET MILL_URL=https://github.com/lihaoyi/mill/releases/download/0.2.7/0.2.7
Expand Down
5 changes: 3 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ val commitsSinceTaggedVersion = {
}


val binCrossScalaVersions = Seq("2.11.12", "2.12.8")
val binCrossScalaVersions = Seq("2.11.12", "2.12.8", "2.13.0-M5")
val fullCrossScalaVersions = Seq(
"2.11.3", "2.11.4", "2.11.5", "2.11.6", "2.11.7", "2.11.8", "2.11.9", "2.11.11", "2.11.12",
"2.12.0", "2.12.1", "2.12.2", "2.12.3", "2.12.4", "2.12.6", "2.12.7", "2.12.8"
"2.12.0", "2.12.1", "2.12.2", "2.12.3", "2.12.4", "2.12.6", "2.12.7", "2.12.8",
"2.13.0-M5"
)

val latestAssemblies = binCrossScalaVersions.map(amm(_).assembly)
Expand Down

0 comments on commit 57f849c

Please sign in to comment.