Skip to content
Snippets Groups Projects
Commit 3ae20d73 authored by Christian Beer's avatar Christian Beer
Browse files

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
parent 2c8d7e1e
No related branches found
No related tags found
No related merge requests found
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
# 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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment