| Revision: | 5238 |
| Committed: | Wed Dec 31 21:34:11 2014 UTC (11 years, 7 months ago) by michael |
| Content type: | application/yaml |
| File size: | 384 byte(s) |
| Log Message: | - Added .travis.yml |
| # | Content |
|---|---|
| 1 | # $Id: .travis.yml 4851 2014-11-05 18:17:41Z michael $ |
| 2 | |
| 3 | language: c |
| 4 | |
| 5 | os: |
| 6 | - linux |
| 7 | - osx |
| 8 | |
| 9 | compiler: |
| 10 | - gcc |
| 11 | - clang |
| 12 | |
| 13 | script: |
| 14 | - if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$CC" = "gcc" ]; then export CC=gcc-4.8; fi |
| 15 | - make |
| 16 | - sudo make install |
| 17 | |
| 18 | notifications: |
| 19 | email: |
| 20 | - bugs@ircd-hybrid.org |
| 21 | irc: |
| 22 | channels: |
| 23 | - "irc.ircd-hybrid.org#ircd-coders" |
| 24 | skip_join: true |
| 25 | |
| 26 | osx_image: xcode61 |