mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 10:52:57 +01:00
7a8cc9d7cf
Solution: Fix version detection and cmake syntax errors Fixes #182
34 lines
522 B
YAML
34 lines
522 B
YAML
# Travis CI script
|
|
|
|
language: c
|
|
|
|
os:
|
|
- linux
|
|
#- osx
|
|
|
|
dist: trusty
|
|
|
|
cache: ccache
|
|
|
|
env:
|
|
matrix:
|
|
# - BUILD_TYPE=cmake DRAFT=enabled
|
|
- BUILD_TYPE=cmake
|
|
|
|
matrix:
|
|
include:
|
|
# - env: BUILD_TYPE=cmake DO_CLANG_FORMAT_CHECK=1 CLANG_FORMAT=/usr/local/clang-5.0.0/bin/clang-format
|
|
# os: linux
|
|
# addons:
|
|
# apt:
|
|
# sources:
|
|
# - llvm-toolchain-trusty-5.0
|
|
# packages:
|
|
# - clang-5.0
|
|
|
|
sudo: required
|
|
|
|
# Build and check this project according to the BUILD_TYPE
|
|
script:
|
|
- ./ci_build.sh
|