]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - jacinto-ai/caffe-jacinto.git/blob - .travis.yml
Merge pull request #959 from nickcarlevaris/contrastive_loss
[jacinto-ai/caffe-jacinto.git] / .travis.yml
1 # Use a build matrix to do two builds in parallel:
2 # one using CMake, and one using make.
3 env:
4   matrix:
5     - WITH_CUDA=false WITH_CMAKE=false
6     - WITH_CUDA=false WITH_CMAKE=true
7     - WITH_CUDA=true WITH_CMAKE=false
8     - WITH_CUDA=true WITH_CMAKE=true
10 language: cpp
12 # Cache Ubuntu apt packages.
13 cache: apt
15 compiler: gcc
17 before_install:
18   - export NUM_THREADS=4
19   - export SCRIPTS=./scripts/travis
21 install:
22   - sudo -E $SCRIPTS/travis_install.sh
24 before_script:
25   - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
26   - if ! $WITH_CMAKE; then $SCRIPTS/travis_setup_makefile_config.sh; fi
28 script: $SCRIPTS/travis_build_and_test.sh
30 notifications:
31 # Emails are sent to the committer's git-configured email address by default,
32 # but only if they have access to the repository.  To enable Travis on your
33 # public fork of Caffe, just go to travis-ci.org and flip the switch on for
34 # your Caffe fork.  To configure your git email address, use:
35 #     git config --global user.email me@example.com
36   email:
37     on_success: always
38     on_failure: always
40 # IRC notifications disabled by default.
41 # Uncomment next 5 lines to send notifications to chat.freenode.net#caffe
42 #   irc:
43 #     channels:
44 #       - "chat.freenode.net#caffe"
45 #     template:
46 #       - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"