hardware/intel/common/libva
Revision | 0e8abd316bee90f7e2a16e5c88f648499188a702 (tree) |
---|---|
Time | 2017-01-22 15:33:53 |
Author | Sean V Kelley <seanvk@post...> |
Commiter | Sean V Kelley |
travis: Initial import of travis instructions
This is a simple port that does a build/install and check.
Signed-off-by: Sean V Kelley <seanvk@posteo.de>
@@ -0,0 +1,51 @@ | ||
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 | + | |
12 | +addons: | |
13 | + apt: | |
14 | + packages: | |
15 | + - autoconf | |
16 | + - automake | |
17 | + - libtool | |
18 | + - m4 | |
19 | + - perl | |
20 | + - pkg-config | |
21 | + - libdrm-dev | |
22 | + - libegl1-mesa-dev | |
23 | + - libgl1-mesa-dev | |
24 | + - libwayland-dev | |
25 | + - libx11-dev | |
26 | + - libxext-dev | |
27 | + - libxfixes-dev | |
28 | + | |
29 | +script: | |
30 | + - ./autogen.sh | |
31 | + - ./configure --prefix=/usr | |
32 | + - make -j4 ; sudo make install | |
33 | + - make check | |
34 | + | |
35 | +notifications: | |
36 | +# Emails are sent to the committer's git-configured email address by default, | |
37 | +# but only if they have access to the repository. To enable Travis on your | |
38 | +# public fork of Caffe, just go to travis-ci.org and flip the switch on for | |
39 | +# your Caffe fork. To configure your git email address, use: | |
40 | +# git config --global user.email me@example.com | |
41 | + email: | |
42 | + on_success: always | |
43 | + on_failure: always | |
44 | + | |
45 | +# IRC notifications disabled by default. | |
46 | +# Uncomment next 5 lines to send notifications to chat.freenode.net#caffe | |
47 | +# irc: | |
48 | +# channels: | |
49 | +# - "chat.freenode.net#intel-media" | |
50 | +# template: | |
51 | +# - "%{repository}/%{branch} (%{commit} - %{author}): %{message}" |