blob: 5c663735b996f90085dddedc2795d90af7e1f2cb (
plain)
| 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
 | image:
  - Ubuntu1804
  - Ubuntu
platform:
  - x64
  - x86
configuration:
  - Release
  - Debug
environment:
  matrix:
    - CC: clang
    - CC: gcc
install:
  - sudo apt-get update
  - sudo apt-get install protobuf-c-compiler --yes
  - sudo apt-get install libprotobuf-c-dev --yes || true
  - sudo apt-get install libgcrypt20-dev libssl-dev libfuse-dev dnsutils --yes
before_build:
  - mkdir -p build
  - cd build
  - cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% ..
build_script:
  - make
test_script:
  - make check
 |