This repository was archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitlab-ci.yml
75 lines (62 loc) · 1.45 KB
/
.gitlab-ci.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
variables:
CONAN_USERNAME: "bryceschober"
CONAN_REFERENCE: "CppUTest/master"
CONAN_CHANNEL: "testing"
CONAN_LOGIN_USERNAME: "bryceschober"
CONAN_UPLOAD: "https://api.bintray.com/conan/bryceschober/bks-conan"
.build-template: &build-template
before_script:
- sudo pip install --upgrade conan_package_tools
- conan user
script:
- python build.py
gcc-4.9:
image: conanio/gcc49
variables:
CONAN_GCC_VERSIONS: "4.9"
<<: *build-template
gcc-5:
image: conanio/gcc5
variables:
CONAN_GCC_VERSIONS: "5"
<<: *build-template
gcc-6:
image: conanio/gcc6
variables:
CONAN_GCC_VERSIONS: "6"
<<: *build-template
gcc-7:
image: conanio/gcc7
variables:
CONAN_GCC_VERSIONS: "7"
<<: *build-template
gcc-8:
image: conanio/gcc8
variables:
CONAN_GCC_VERSIONS: "8"
<<: *build-template
clang-3.9:
image: conanio/clang39
variables:
CONAN_CLANG_VERSIONS: "3.9"
<<: *build-template
clang-4.0:
image: conanio/clang40
variables:
CONAN_CLANG_VERSIONS: "4.0"
<<: *build-template
clang-5.0:
image: conanio/clang50
variables:
CONAN_CLANG_VERSIONS: "5.0"
<<: *build-template
clang-6.0:
image: conanio/clang60
variables:
CONAN_CLANG_VERSIONS: "6.0"
<<: *build-template
clang-7:
image: conanio/clang7
variables:
CONAN_CLANG_VERSIONS: "7.0"
<<: *build-template