blob: 6d644570fc1d8845b202a3dba8e714523c99af02 (
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: base/archlinux
stage: build-test-all
before_script:
- pacman --noconfirm -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
|