From 0e8abd316bee90f7e2a16e5c88f648499188a702 Mon Sep 17 00:00:00 2001 From: Sean V Kelley Date: Sat, 21 Jan 2017 22:33:53 -0800 Subject: travis: Initial import of travis instructions This is a simple port that does a build/install and check. Signed-off-by: Sean V Kelley --- .travis.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f9d0dd6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,51 @@ +dist: xenial +sudo: required + +language: c +compiler: gcc +os: linux + +env: + global: + - NUM_THREADS=4 + +addons: + apt: + packages: + - autoconf + - automake + - libtool + - m4 + - perl + - pkg-config + - libdrm-dev + - libegl1-mesa-dev + - libgl1-mesa-dev + - libwayland-dev + - libx11-dev + - libxext-dev + - libxfixes-dev + +script: + - ./autogen.sh + - ./configure --prefix=/usr + - make -j4 ; sudo make install + - make check + +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#intel-media" +# template: +# - "%{repository}/%{branch} (%{commit} - %{author}): %{message}" -- cgit v1.2.1