-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to AdoptOpenJDK 8 & 11 (#305)
Fixes #275
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
language: scala | ||
|
||
env: | ||
matrix: | ||
- [email protected] | ||
|
||
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh | ||
install: jabba install "$TRAVIS_JDK" && jabba use $_ && java -Xmx32m -version | ||
|
||
jobs: | ||
include: | ||
- stage: check | ||
|
@@ -8,16 +15,14 @@ jobs: | |
|
||
- stage: test | ||
script: sbt verify | ||
jdk: oraclejdk8 | ||
name: "Compile, test and build docs with JDK8" | ||
|
||
- script: sbt verify | ||
jdk: openjdk11 | ||
name: "Compile, test and build docs with JDK11" | ||
env: [email protected] | ||
|
||
- stage: publish | ||
script: sbt ci-release | ||
jdk: oraclejdk8 | ||
name: "Cross publish artifacts" | ||
|
||
stages: | ||
|