-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (31 loc) · 921 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: scala
cache:
directories:
- ".prereq-refs"
- "$HOME/.ivy2"
- "$HOME/.sbt"
before_cache:
- rm -Rf $HOME/.ivy2/.sbt.cache.lock
- rm -Rf $HOME/.ivy2/.sbt.ivy.lock
# We define the script in the build matrix
script: echo "No script specified" && false
jobs:
include:
- stage: Prerequisites
name: Required but unreleased sbt plugins
jdk: openjdk8
script:
- sh -e scripts/build-prereq.sh sbt-filterresources
- sh -e scripts/build-prereq.sh sbt-blendedfeature
- stage: Prerequisites
name: Required but unreleased sbt plugins
jdk: openjdk11
script:
- sh -e scripts/build-prereq.sh sbt-filterresources
- sh -e scripts/build-prereq.sh sbt-blendedfeature
- stage: Test
jdk: openjdk8
script: sbt test scripted publishLocal
- stage: Test
jdk: openjdk11
script: sbt test scripted publishLocal