Skip to content

Commit

Permalink
Merge pull request #62 from drslump/integrate-travis-ci
Browse files Browse the repository at this point in the history
Integrate travis ci
  • Loading branch information
bamboo committed Oct 19, 2013
2 parents 1fc0e4b + ac2a62f commit 83c0eb0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
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

0 comments on commit 83c0eb0

Please sign in to comment.