-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (46 loc) · 1013 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
41
42
43
44
45
46
47
48
49
50
51
52
dist: xenial
sudo: required
language: c
compiler:
- gcc
branches:
only:
- master
- dev
before_install:
- pwd
- git clone -b $TRAVIS_BRANCH --recurse-submodules -j8 https://github.com/gonapps-org/libgenc
- cd libgenc
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
- cd ../../
- pwd
- git clone -b $TRAVIS_BRANCH --recurse-submodules -j8 https://github.com/gonapps-org/libfastdl
- cd libfastdl
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
- cd ../../
install:
- sudo apt-get install -y libcmocka-dev libjansson-dev
- pwd
- cd libgenc/build
- make
- sudo make install
- cd ../../
- pwd
- cd libfastdl/build
- make
- sudo make install
- cd ../../
before_script:
- cmake -version
- make --version
- gcc --version
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DBUILD_WITH_COVERAGE=ON ..
script: make && ctest -V
after_success:
- bash <(curl -s https://codecov.io/bash)