Add Chukwa support
This commit is contained in:
parent
1d4bc030fb
commit
dcf9c68334
70 changed files with 7240 additions and 4 deletions
23
src/3rdparty/argon2/.travis.yml
vendored
Normal file
23
src/3rdparty/argon2/.travis.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
language: c
|
||||
|
||||
dist: trusty
|
||||
sudo: false
|
||||
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
|
||||
env:
|
||||
- BUILD=cmake BUILD_TYPE=Debug
|
||||
- BUILD=cmake BUILD_TYPE=Release
|
||||
- BUILD=autotools
|
||||
|
||||
script: |
|
||||
case $BUILD in
|
||||
cmake)
|
||||
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE . && make && make test
|
||||
;;
|
||||
autotools)
|
||||
autoreconf -i && ./configure && make && make check
|
||||
;;
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue