forked from twosigma/Cook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
20 lines (20 loc) · 726 Bytes
/
Copy path.travis.yml
File metadata and controls
20 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise main" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos -y </dev/null
branches:
only:
- master
sudo: required
dist: trusty
env:
global:
- MESOS_NATIVE_JAVA_LIBRARY=/usr/lib/libmesos.so
- CLJ_HTTP_ASYNC_POOL_TEST_DURATION_MULTIPLIER=5
matrix:
- TEST_DIR=scheduler DEPS_CMD='lein with-profiles +test deps' TEST_CMD='lein test :all'
- TEST_DIR=jobclient DEPS_CMD='mvn dependency:resolve' TEST_CMD='mvn test'
before_script: (cd $TEST_DIR && $DEPS_CMD)
script: cd $TEST_DIR && $TEST_CMD