forked from etr/libhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 719 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 719 Bytes
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
language: cpp
compiler:
- gcc
- clang
# Change this to your needs
before_install:
- sudo apt-get install texinfo
- sudo pip install cpp-coveralls
- wget ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.37.tar.gz
- tar -xvzf libmicrohttpd-0.9.37.tar.gz
- cd libmicrohttpd-0.9.37
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
script:
- ./bootstrap
- mkdir build
- cd build
- ../configure --enable-debug
- make
- make check
# - rm -rf build
# - mkdir build
# - cd build
# - ../configure --enable-cpp11
# - make
# - make check
# - cd ..
after_success:
- coveralls --no-gcov --extension cpp --build-root src/ --exclude lib --exclude tests --gcov-options '\-lp'