To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

The primary repository for this project is hosted at https://github.com/piper-audio/piper .
This repository is a read-only copy which is updated automatically every hour.

Statistics Download as Zip
| Branch: | Revision:

root / .travis.yml @ 212:d62a69f8d649

History | View | Annotate | Download (464 Bytes)

1
dist:
2
  - trusty
3

    
4
language:
5
  - cpp
6

    
7
sudo:
8
  - false
9

    
10
os:
11
  - linux
12
  - osx
13

    
14
before_install:
15
  - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
16
  - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ( cd ../capnproto ; git checkout v0.6.1 ) ; fi
17
  - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i )
18
  - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
19

    
20
install:
21
  - sudo pip2 install jsonschema
22

    
23
script:
24
  - ./check.sh
25