-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
78 lines (66 loc) · 1.57 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
variables:
CONAN_USERNAME: "uilianries"
CONAN_REFERENCE: "Catch/1.9.6"
CONAN_CHANNEL: "ci"
CONAN_UPLOAD: "https://api.bintray.com/conan/uilianries/conan"
CONAN_STABLE_BRANCH_PATTERN: "release/*"
.build-template: &build-template
before_script:
- sudo -E ./.travis/install.sh
script:
- sudo -E ./.travis/run.sh
gcc-4.6:
image: lasote/conangcc46
variables:
CONAN_GCC_VERSIONS: "4.6"
<<: *build-template
gcc-4.8:
image: lasote/conangcc48
variables:
CONAN_GCC_VERSIONS: "4.8"
<<: *build-template
gcc-4.9:
image: lasote/conangcc49
variables:
CONAN_GCC_VERSIONS: "4.9"
<<: *build-template
gcc-5.2:
image: lasote/conangcc52
variables:
CONAN_GCC_VERSIONS: "5.2"
<<: *build-template
gcc-5.3:
image: lasote/conangcc53
variables:
CONAN_GCC_VERSIONS: "5.3"
<<: *build-template
gcc-5.4:
image: lasote/conangcc54
variables:
CONAN_GCC_VERSIONS: "5.4"
<<: *build-template
gcc-6.2:
image: lasote/conangcc62
variables:
CONAN_GCC_VERSIONS: "6.2"
<<: *build-template
gcc-6.3:
image: lasote/conangcc63
variables:
CONAN_GCC_VERSIONS: "6.3"
<<: *build-template
clang-3.8:
image: lasote/conanclang38
variables:
CONAN_CLANG_VERSIONS: "3.8"
<<: *build-template
clang-3.9:
image: lasote/conanclang39
variables:
CONAN_CLANG_VERSIONS: "3.9"
<<: *build-template
clang-4.0:
image: lasote/conanclang40
variables:
CONAN_CLANG_VERSIONS: "4.0"
<<: *build-template