[go: up one dir, main page]

File: .travis.yml

package info (click to toggle)
icecc-monitor 3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 600 kB
  • sloc: cpp: 4,389; xml: 73; makefile: 6; sh: 2
file content (38 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (3)
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