forked from yugabyte/jepsen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (34 loc) · 794 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
language: clojure
lein: lein
dist: trusty
jdk:
- oraclejdk8
branches:
only:
- master
- master-yb
addons:
apt:
packages:
- gnuplot
- gnuplot-x11
- python-pip
before_install:
- cd ${TRAVIS_BUILD_DIR}/jepsen
script:
- |
(
set -euo pipefail
pip install --user pycodestyle
pycodestyle --max-line-length=100 ../yugabyte/run-jepsen.py
)
- lein clean
# Exclude namespaces importing rhizome.viz, because compiling those requires
# X11. For full error message, see:
# https://travis-ci.com/github/jepsen-io/jepsen/builds/161202862
- lein eastwood '{:config-files [".eastwood.clj"], :exclude-namespaces [jepsen.tests.cycle.wr jepsen.tests.cycle.append]}'
- lein test
notifications:
email:
on_success: never
on_failure: never