diff options
author | huy <huy@huyng.com> | 2014-07-09 23:02:06 -0700 |
---|---|---|
committer | Jeff Donahue <jeff.donahue@gmail.com> | 2014-07-14 02:18:16 -0700 |
commit | 00a8f3af825e9083b4674437e6890d4159a0ec1d (patch) | |
tree | 4e27c77d8311fb8240b9437ff09a35eba5ee7626 /.travis.yml | |
parent | e5ce15d29d183f8a2cdc48ab12e90d254cf4fad1 (diff) | |
download | caffeonacl-00a8f3af825e9083b4674437e6890d4159a0ec1d.tar.gz caffeonacl-00a8f3af825e9083b4674437e6890d4159a0ec1d.tar.bz2 caffeonacl-00a8f3af825e9083b4674437e6890d4159a0ec1d.zip |
@huyng's .travis.yml integration configuration file to install and test Caffe.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..1dd8a2d8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,41 @@ +language: cpp +compiler: + - gcc + - clang +before_install: + - echo $LANG + - echo $LC_ALL + - sudo apt-get -y update +install: + - sudo apt-get -y install wget git curl python-dev libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libboost-all-dev libhdf5-serial-dev protobuf-compiler libatlas-dev libatlas-base-dev + - wget https://google-glog.googlecode.com/files/glog-0.3.3.tar.gz -O /tmp/glog-0.3.3.tar.gz && tar -C /tmp -xzvf /tmp/glog-0.3.3.tar.gz && rm /tmp/glog-0.3.3.tar.gz + - cd /tmp/glog-0.3.3 && ./configure && make && sudo make install && cd - + - curl http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1204/x86_64/cuda-repo-ubuntu1204_6.0-37_amd64.deb -o /tmp/cuda_install.deb && sudo dpkg -i /tmp/cuda_install.deb && rm /tmp/cuda_install.deb + - sudo apt-get -y update && sudo apt-get -y install cuda + - curl https://gitorious.org/mdb/mdb/archive/7f038d0f15bec57b4c07aa3f31cd5564c88a1897.tar.gz -o /tmp/mdb.tar.gz && tar -C /tmp -xzvf /tmp/mdb.tar.gz && rm /tmp/mdb.tar.gz + - cd /tmp/mdb-mdb/libraries/liblmdb/ && make && sudo make install && cd - +before_script: + - mv Makefile.config.example Makefile.config +script: + - make all + - make test + - LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64 make runtest +branches: + only: + - master + - dev + - travisci +notifications: + recipients: + - huy@huyng.com + email: + on_success: change + on_failure: always + irc: + channels: + - "chat.freenode.net#caffe" + template: + - "%{repository}/%{branch} (%{commit} - %{author}): %{message}" +os: + - linux + - osx |