OSDN Git Service

travis: Configure for a coverity scan branch
[android-x86/hardware-intel-common-libva.git] / .travis.yml
1 dist: xenial
2 sudo: required
3
4 language: c
5 compiler: gcc
6 os: linux
7
8 env:
9   global:
10     - NUM_THREADS=4
11     # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
12     #   via the "travis encrypt" command using the project repo's public key
13     - secure: "Eu+ys+LW614J1wU1+i2qpfbSq9gFPvPq09XBgkK2hkDIEuouOX+G4ydpqc7Wg7+pv/P38KiUdbyoJtPxryvlwFYmuL/MEHPzjqVmxHuS0TpqwYE7Fh/44d/N9slGjD9Iv//pbabVrcrTptuJIRwH76GVsmec564uXd+yZGlR0c0="
14
15
16 before_install:
17   - test "${TRAVIS_BRANCH}" != 'coverity_scan' -o "${TRAVIS_JOB_NUMBER##*.}" = '1' || exit 0
18   - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
19   - pip install --user cpp-coveralls
20   - sudo apt-get -qq update
21   - sudo apt-get install -y build-essential
22   - sudo apt-get install -y autoconf
23   - sudo apt-get install -y automake
24   - sudo apt-get install -y libtool
25   - sudo apt-get install -y m4 
26   - sudo apt-get install -y lcov
27   - sudo apt-get install -y perl
28   - sudo apt-get install -y pkg-config
29   - sudo apt-get install -y libdrm-dev
30   - sudo apt-get install -y autoconf
31   - sudo apt-get install -y libegl1-mesa-dev
32   - sudo apt-get install -y libgl1-mesa-dev
33   - sudo apt-get install -y libwayland-dev
34   - sudo apt-get install -y libx11-dev
35   - sudo apt-get install -y libxext-dev
36   - sudo apt-get install -y libxfixes-dev
37
38 addons:
39   coverity_scan:
40     project:
41       name: "01org/libva"
42       description: "Build submitted via Travis CI"
43     build_command_prepend: "./autogen.sh; ./configure --prefix=/usr"
44     build_command:  "make -j4"
45     branch_pattern: coverity_scan
46
47 script:
48   - if [[ "${COVERITY_SCAN_BRANCH}" == 1 ]];
49       then
50         echo "Don't build on coverty_scan branch.";
51         exit 0;
52     fi
53   - ./autogen.sh
54   - ./configure --prefix=/usr
55   - make -j4 ; sudo make install
56   - make check
57
58 after_success:
59         - coveralls --exclude lib --exclude tests --gcov-options '\-lp'
60
61 notifications:
62 # Emails are sent to the committer's git-configured email address by default,
63 # but only if they have access to the repository.  To enable Travis on your
64 # public project, just go to travis-ci.org and flip the switch on for
65 # your project.  To configure your git email address, use:
66 #     git config --global user.email me@example.com
67   email:
68     on_success: always
69     on_failure: always
70
71 # Slack notifications
72 #
73   slack: intel-media:p0wZO3fWJ1ouSsF0RNKbOl5G
74
75 # IRC notifications disabled by default.
76 # Uncomment next 5 lines to send notifications to chat.freenode.net#caffe
77 #   irc:
78 #     channels:
79 #       - "chat.freenode.net#intel-media"
80 #     template:
81 #       - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"