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
|
sudo: required
dist: xenial
language: cpp
compiler:
- gcc
- clang
before_script:
- |
git clone --depth=50 --branch=master https://github.com/icecc/icecream.git icecream
pushd icecream
autoreconf -fiv
./configure --prefix=$(pwd)
make install -C services -s -j $(getconf _NPROCESSORS_ONLN)
popd
- cmake --version
- qtchooser -run-tool=qmake -qt=qt5 --version
- mkdir build
- cd build
- PKG_CONFIG_PATH=../icecream/lib/pkgconfig cmake ..
script: make
addons:
apt:
packages:
- cmake
- qtbase5-dev
- extra-cmake-modules
# for icecream
- libcap-ng-dev
- liblzo2-dev
- libzstd1-dev
- libarchive-dev
|