mirror of https://github.com/BOINC/boinc.git
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:
parent
2c8d7e1e64
commit
3ae20d73ef
|
@ -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
|
Loading…
Reference in New Issue