Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Topic/travis mesos #42

Merged
merged 16 commits into from
Oct 7, 2016
20 changes: 11 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
dist: trusty
sudo: required
language: clojure
before_script:
- bash test/install_deps.sh
- bash test/start_mesos.sh
script:
- make check
- lein compile
- lein uberjar
#- make check
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
- openjdk7
#- openjdk8
#addons:
# apt:
# sources:
# -
#- oraclejdk7
#- openjdk6
#- openjdk7

notifications:
email:
- oubiwann@gmail.com
12 changes: 12 additions & 0 deletions test/install_deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

sudo apt-get install libevent-dev

MESOS_DEB=mesos_1.0.1-2.0.93.ubuntu1404_amd64.deb
MESOS_DL=http://repos.mesosphere.com/ubuntu/pool/main/m/mesos/$MESOS_DEB
curl --remote-name $MESOS_DL
sudo dpkg -i $MESOS_DEB
rm $MESOS_DEB
ls -al /etc/init.d/m*
which mesos-master
which mesos-agent
17 changes: 17 additions & 0 deletions test/start_mesos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

sudo nohup /usr/sbin/mesos-master --work_dir=/tmp/mesos-master --ip=127.0.0.1 > master.log &
sudo nohup /usr/sbin/mesos-agent --work_dir=/tmp/mesos-agent --master=127.0.0.1:5050 > agent.log &

sleep 10

echo
echo "*** MASTER LOG ***"
echo
cat master.log
echo
echo "*** AGENT LOG ***"
echo
cat agent.log
echo
echo