forked from http4s/http4s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (54 loc) · 1.15 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
language: scala
dist: trusty
branches:
only:
- master
- /^release-/
env:
global:
- HUGO_VERSION=0.26
- LOGBACK_ROOT_LEVEL=WARN
- LOGBACK_EXCEPTION_PATTERN=%xThrowable{3}
- ROOT_DIR="."
matrix:
include:
- jdk: oraclejdk8
scala: 2.12.7
- jdk: oraclejdk8
scala: 2.11.12
- jdk: openjdk11
scala: 2.12.7
- jdk: oraclejdk8
env:
- ROOT_DIR="scalafix"
scala: 2.12.7
allow_failures:
- jdk: openjdk11
scala: 2.12.7
notifications:
webhooks:
urls:
- secure: "aD5b1XnAbGJi6YYofSUdradQngsxkG+xlrbev2kv/xSxD3LtzEiUrewODYmDCPiAL3biTi9/4Ye5mkC7g0ksW1X5ZpW46c5cxpuICE14Ke8EdGF4xK7HW70GvK4We9s8xDddHR4QrNk6G216B+9IPgrnT/VkCaJ327AM5oGWoDY="
on_success: change
on_failure: always
on_start: never
sudo: required
cache:
directories:
- "$HOME/.coursier/cache"
- "$HOME/.ivy2/cache"
- "$HOME/.sbt/boot"
install:
- scripts/install-hugo
before_script:
- source scripts/helpers
- PATH="$HOME/bin:$PATH"
- decrypt_deploy_key
- decrypt_pgp_secrets
- configure_git
script:
- cd $ROOT_DIR && sbt ++$TRAVIS_SCALA_VERSION ci
before_cache:
- cleanup_cache
after_success:
- upload_codecov()