aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: c88ce29a082d9ac1f9cdcfa67be08217c2dbce0d (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
35
36
37
38
39
40
41
42
stages:
    - build-test-all

debian-stable:
    image: debian:stable
    stage: build-test-all
    before_script:
        - apt-get update
        - apt-get -y install build-essential clang libssl-dev openssl
    script:
        - make CC=gcc clean all test
        - make CC=clang clean all test

ubuntu-trusty:
    image: ubuntu:trusty
    stage: build-test-all
    before_script:
        - apt-get update
        - apt-get -y install build-essential clang libssl-dev openssl
    script:
        - make CC=gcc clean all test
        - make CC=clang clean all test

ubuntu-xenial:
    image: ubuntu:xenial
    stage: build-test-all
    before_script:
        - apt-get update
        - apt-get -y install build-essential clang libssl-dev openssl
    script:
        - make CC=gcc clean all test
        - make CC=clang clean all test

ubuntu-latest:
    image: ubuntu:latest
    stage: build-test-all
    before_script:
        - apt-get update
        - apt-get -y install build-essential clang libssl-dev openssl
    script:
        - make CC=gcc clean all test
        - make CC=clang clean all test