-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
166 lines (143 loc) · 3.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
variables:
CONAN_USERNAME: "arsen-studio"
CONAN_STABLE_BRANCH_PATTERN: "stable/*"
CONAN_UPLOAD: "https://api.bintray.com/conan/arsen-studio/arsen-deps"
CONAN_UPLOAD_ONLY_RECIPE: "true"
CONAN_REFERENCE: "llvm/9.0.0"
.build-template:
before_script:
- sudo pip install --upgrade conan_package_tools
- conan user
script:
- python build.py
gcc-6:
image: conanio/gcc6
variables:
CONAN_GCC_VERSIONS: "6"
CONAN_ARCHS: "x86_64"
extends: .build-template
gcc-6-x86:
image: conanio/gcc6-x86
variables:
CONAN_GCC_VERSIONS: "6"
CONAN_ARCHS: "x86"
extends: .build-template
gcc-7:
image: conanio/gcc7
variables:
CONAN_GCC_VERSIONS: "7"
CONAN_ARCHS: "x86_64"
extends: .build-template
gcc-7-x86:
image: conanio/gcc7-x86
variables:
CONAN_GCC_VERSIONS: "7"
extends: .build-template
gcc-8:
image: conanio/gcc8
variables:
CONAN_GCC_VERSIONS: "8"
CONAN_ARCHS: "x86_64"
extends: .build-template
gcc-8-x86:
image: conanio/gcc8-x86
variables:
CONAN_GCC_VERSIONS: "8"
CONAN_ARCHS: "x86"
extends: .build-template
gcc-9:
image: conanio/gcc9
variables:
CONAN_GCC_VERSIONS: "9"
CONAN_ARCHS: "x86_64"
extends: .build-template
gcc-9-x86:
image: conanio/gcc9-x86
variables:
CONAN_GCC_VERSIONS: "9"
CONAN_ARCHS: "x86"
extends: .build-template
clang-4.0:
image: conanio/clang40
variables:
CONAN_CLANG_VERSIONS: "4.0"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-4.0-x86:
image: conanio/clang40-x86
variables:
CONAN_CLANG_VERSIONS: "4.0"
CONAN_ARCHS: "x86"
extends: .build-template
clang-5.0:
image: conanio/clang50
variables:
CONAN_CLANG_VERSIONS: "5.0"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-5.0-x86:
image: conanio/clang50-x86
variables:
CONAN_CLANG_VERSIONS: "5.0"
CONAN_ARCHS: "x86"
extends: .build-template
clang-6.0:
image: conanio/clang60
variables:
CONAN_CLANG_VERSIONS: "6.0"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-6.0-x86:
image: conanio/clang60-x86
variables:
CONAN_CLANG_VERSIONS: "6.0"
CONAN_ARCHS: "x86"
extends: .build-template
clang-7.0:
image: conanio/clang70
variables:
CONAN_CLANG_VERSIONS: "7.0"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-7.0-x86:
image: conanio/clang70-x86
variables:
CONAN_CLANG_VERSIONS: "7.0"
CONAN_ARCHS: "x86"
extends: .build-template
clang-7.1:
image: conanio/clang71
variables:
CONAN_CLANG_VERSIONS: "7.1"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-7.1-x86:
image: conanio/clang71-x86
variables:
CONAN_CLANG_VERSIONS: "7.1"
CONAN_ARCHS: "x86"
extends: .build-template
clang-8:
image: conanio/clang8
variables:
CONAN_CLANG_VERSIONS: "8"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-8-x86:
image: conanio/clang8-x86
variables:
CONAN_CLANG_VERSIONS: "8"
CONAN_ARCHS: "x86"
extends: .build-template
clang-9:
image: conanio/clang9
variables:
CONAN_CLANG_VERSIONS: "9"
CONAN_ARCHS: "x86_64"
extends: .build-template
clang-9-x86:
image: conanio/clang9-x86
variables:
CONAN_CLANG_VERSIONS: "9"
CONAN_ARCHS: "x86"
extends: .build-template