forked from microsoft/rDSN
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
40 lines (32 loc) · 951 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sudo: required
dist: trusty
language: cpp
os: linux
compiler:
- gcc
before_install:
# - sudo apt-get install php5-cli
# - sudo wget https://raw.githubusercontent.com/shengofsun/packages/master/source.list
# - sudo cp source.list /etc/apt/sources.list
# - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
# - sudo apt-get update -qq
- wget https://raw.githubusercontent.com/shengofsun/packages/master/build-depends.tar.gz
- tar xf build-depends.tar.gz
- cd packages
- ls | xargs sudo dpkg -i --force-depends
- cd ..
- sudo aptitude install mono-xbuild -y
- sudo aptitude install php5 -y
install:
- ./run.sh format
before_script:
- ./run.sh start_zk
- ulimit -c unlimited -S
script:
- this_path=`readlink -f $0`
- export DSN_ROOT=`dirname $this_path`
- ./run.sh build --build_plugins
- ./run.sh install
- ./run.sh test
notifications:
email: false