-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from drslump/integrate-travis-ci
Integrate travis ci
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Travis-CI Build for Boo | ||
# see travis-ci.org for details | ||
|
||
language: c | ||
|
||
# Make sure mono is installed | ||
install: | ||
- echo "Installing Mono... (please wait)" | ||
# Make sure mono is installed, | ||
# pipe stdout to dev/null because qq is still too chatty | ||
- sudo apt-get update -qq > /dev/null | ||
- sudo apt-get install -qq mono-devel mono-utils nant nunit-console > /dev/null | ||
# Make sure root certificates are in place | ||
- mozroots --import --sync > /dev/null | ||
|
||
# Run the Build script | ||
script: | ||
- nant rebuild | ||
# Running tests does not work :( | ||
# - nant test | ||
|
||
# Notify development list when needed | ||
notifications: | ||
recipients: | ||
- [email protected] | ||
email: | ||
on_success: change | ||
on_failure: always |