mirror of
https://github.com/kakwa/uts-server
synced 2025-01-26 05:17:26 +01:00
adding a travis file for continuous integration
This commit is contained in:
parent
5950ff1286
commit
718535713d
33
.travis.yml
Normal file
33
.travis.yml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
- os: osx
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcode-select --install; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install argp-standalone; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install valgrind; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libxml2; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install coreutils; fi
|
||||||
|
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- cmake
|
||||||
|
- time
|
||||||
|
- valgrind
|
||||||
|
- libxml2-utils
|
||||||
|
- libc6-dev
|
||||||
|
- gcc
|
||||||
|
- g++
|
||||||
|
- libssl-dev
|
||||||
|
|
||||||
|
language: cpp
|
||||||
|
|
||||||
|
compiler: clang
|
||||||
|
|
||||||
|
script: cmake . -DBUNDLE_CIVETWEB=ON && make
|
Loading…
x
Reference in New Issue
Block a user