-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
38 lines (31 loc) · 1.04 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
# Define stages
stages:
- build
# Install conan configuration
before_script:
- conan config install https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/quantumcodingsolutions/tools/conan-configuration.git --type git
variables:
CONAN_USER: 'qcs'
CONAN_CHANNEL: '$CI_COMMIT_REF_NAME'
CONAN_PROFILE: '$CI_JOB_NAME'
# Build matrix
gcc_debug:
image: registry.gitlab.com/quantumcodingsolutions/docker/dev-gcc:master
stage: build
script: "./scripts/conan_create.sh"
clang_debug:
image: registry.gitlab.com/quantumcodingsolutions/docker/dev-clang:master
stage: build
script: "./scripts/conan_create.sh"
clang_libstdcpp11:
image: registry.gitlab.com/quantumcodingsolutions/docker/dev-clang:master
stage: build
script: "./scripts/conan_create.sh"
clang_undefined:
image: registry.gitlab.com/quantumcodingsolutions/docker/dev-clang:master
stage: build
script: "./scripts/conan_create.sh"
clang_address:
image: registry.gitlab.com/quantumcodingsolutions/docker/dev-clang:master
stage: build
script: "./scripts/conan_create.sh"