aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ca78a96297e693ee294f2987bae2ef83e93f27fc (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
43
44
45
46
47
48
49
50
51
stages:
    - build-test-all

arch:
    image: archlinux/base
    stage: build-test-all
    before_script:
        - pacman --noconfirm --needed -Syu base-devel clang python
    script:
        - make CC=gcc clean all test
        - make CC=clang clean all test

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