Enable Travis-CI for master branch

- An email is send only to those adresses given in .travis.yml
- Only the master branch is build
- The compiler gcc and clang are used
- The components libraries, server and client/manager are build separately
- The README.md just displays the current build status on the github mirror
This commit is contained in:
Christian Beer 2015-01-09 18:58:03 +01:00
parent 2c8d7e1e64
commit 3ae20d73ef
2 changed files with 45 additions and 0 deletions

40
.travis.yml Normal file
View File

@ -0,0 +1,40 @@
language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
notifications:
email:
recipients:
- boinc_cvs@ssl.berkeley.edu
- rwalton@ssl.berkeley.edu
on_success: always
on_failure: always
env:
- BOINC_TYPE=libs
- BOINC_TYPE=server
- BOINC_TYPE=client
matrix:
fast_finish: true
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install make m4 pkg-config dh-autoreconf freeglut3-dev libxmu-dev libxi-dev libjpeg62-dev
- if [[ "${BOINC_TYPE}" == "server" ]]; then ( sudo apt-get install python libssl-dev python-mysqldb libmysqlclient-dev ) fi
- if [[ "${BOINC_TYPE}" == "client" ]]; then ( sudo apt-get install libssl-dev libcurl4-openssl-dev libxss-dev libnotify-dev libxcb-util0-dev libsqlite3-dev) fi
before_script:
- ./_autosetup
script:
- if [[ "${BOINC_TYPE}" == "libs" ]]; then ( ./configure --disable-server --disable-client --disable-manager && make ) fi
- if [[ "${BOINC_TYPE}" == "server" ]]; then ( ./configure --disable-client --disable-manager && make ) fi
- if [[ "${BOINC_TYPE}" == "client" ]]; then ( ./configure --disable-server && make ) fi

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# BOINC github mirror
See official page on how to contribute: http://boinc.berkeley.edu/trac/wiki
## Current build status
master: [![Build Status](https://travis-ci.org/BOINC/boinc-v2.svg?branch=master)](https://travis-ci.org/BOINC/boinc-v2)