File: .travis.yml

package info (click to toggle)
caffe-contrib 1.0.0%2Bgit20180821.99bd997-2
  • links: PTS, VCS
  • area: contrib
  • in suites: buster
  • size: 16,244 kB
  • sloc: cpp: 61,579; python: 5,783; makefile: 586; sh: 562
file content (67 lines) | stat: -rw-r--r-- 1,938 bytes parent folder | download | duplicates (5)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
dist: trusty
sudo: required

language: cpp
compiler: gcc

env:
  global:
    - NUM_THREADS=4
  matrix:
    # Use a build matrix to test many builds in parallel
    # envvar defaults:
    #   WITH_CMAKE: false
    #   WITH_PYTHON3: false
    #   WITH_IO: true
    #   WITH_CUDA: false
    #   WITH_CUDNN: false
    - BUILD_NAME="default-make"
#   - BUILD_NAME="python3-make" WITH_PYTHON3=true
    - BUILD_NAME="no-io-make" WITH_IO=false
    - BUILD_NAME="cuda-make" WITH_CUDA=true
    - BUILD_NAME="cudnn-make" WITH_CUDA=true WITH_CUDNN=true

    - BUILD_NAME="default-cmake" WITH_CMAKE=true
    - BUILD_NAME="python3-cmake" WITH_CMAKE=true WITH_PYTHON3=true
    - BUILD_NAME="no-io-cmake" WITH_CMAKE=true WITH_IO=false
    - BUILD_NAME="cuda-cmake" WITH_CMAKE=true WITH_CUDA=true
    - BUILD_NAME="cudnn-cmake" WITH_CMAKE=true WITH_CUDA=true WITH_CUDNN=true

cache:
  apt: true
  directories:
    - ~/protobuf3

before_install:
  - source ./scripts/travis/defaults.sh

install:
  - sudo -E ./scripts/travis/install-deps.sh
  - ./scripts/travis/setup-venv.sh ~/venv
  - source ~/venv/bin/activate
  - ./scripts/travis/install-python-deps.sh

before_script:
  - ./scripts/travis/configure.sh

script:
  - ./scripts/travis/build.sh
  - ./scripts/travis/test.sh

notifications:
# Emails are sent to the committer's git-configured email address by default,
# but only if they have access to the repository.  To enable Travis on your
# public fork of Caffe, just go to travis-ci.org and flip the switch on for
# your Caffe fork.  To configure your git email address, use:
#     git config --global user.email me@example.com
  email:
    on_success: always
    on_failure: always

# IRC notifications disabled by default.
# Uncomment next 5 lines to send notifications to chat.freenode.net#caffe
#   irc:
#     channels:
#       - "chat.freenode.net#caffe"
#     template:
#       - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"