blob: db17a6cccc54c2f63dc11a59da96f59e68020768 [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001# This is the tag of the docker image used for the build jobs. If the
2# image doesn't exist yet, the containers-build stage generates it.
3#
4# In order to generate a new image, one should generally change the tag.
5# While removing the image from the registry would also work, that's not
6# recommended except for ephemeral images during development: Replacing
7# an image after a significant amount of time might pull in newer
8# versions of gcc/clang or other packages, which might break the build
9# with older commits using the same tag.
10#
11# After merging a change resulting in generating a new image to the
12# main repository, it's recommended to remove the image from the source
13# repository's container registry, so that the image from the main
14# repository's registry will be used there as well.
15#
16# The format of the tag is "%Y-%m-%d-${counter}" where ${counter} stays
17# at "01" unless you have multiple updates on the same day :)
18variables:
19 UBUNTU_TAG: 2019-01-31-01
20 UBUNTU_IMAGE: "$CI_REGISTRY/$CI_PROJECT_PATH/ubuntu:$UBUNTU_TAG"
21
22
23stages:
24 - containers-build
Eric Engestrom46d23c02019-01-20 11:26:53 +000025 - build+test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000026
27
28# CONTAINERS
29
30containers:ubuntu:
31 stage: containers-build
32 image: docker:stable
33 services:
34 - docker:dind
35 variables:
36 DOCKER_HOST: tcp://docker:2375
37 DOCKER_DRIVER: overlay2
38 script:
39 # Enable experimental features such as `docker manifest inspect`
40 - mkdir -p ~/.docker
41 - "echo '{\"experimental\": \"enabled\"}' > ~/.docker/config.json"
42 - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
43 # Check if the image (with the specific tag) already exists
44 - docker manifest inspect $UBUNTU_IMAGE && exit || true
45 - docker build -t $UBUNTU_IMAGE -f .gitlab-ci/Dockerfile.ubuntu .
46 - docker push $UBUNTU_IMAGE
47 only:
48 changes:
49 - .gitlab-ci.yml
50 - .gitlab-ci/Dockerfile.ubuntu
Eric Engestrom46d23c02019-01-20 11:26:53 +000051
52
53# BUILD
54
55.build:
56 image: $UBUNTU_IMAGE
57 stage: build+test
58 artifacts:
59 when: on_failure
60 untracked: true
61
62.meson-build:
63 extends: .build
64 before_script:
65 # We need to control the version of llvm-config we're using, so we'll
66 # generate a native file to do so. This requires meson >=0.49
67 - if test -n "$LLVM_VERSION"; then
68 LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
69 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file;
70 $LLVM_CONFIG --version;
71 else
72 touch native.file;
73 fi
74 - meson --version
75 - meson _build
76 --native-file=native.file
77 -D build-tests=true
78 -D libunwind=${UNWIND}
79 ${DRI_LOADERS}
80 -D dri-drivers=${DRI_DRIVERS:-[]}
81 ${GALLIUM_ST}
82 -D gallium-drivers=${GALLIUM_DRIVERS:-[]}
83 -D vulkan-drivers=${VULKAN_DRIVERS:-[]}
84 - cd _build
85 - meson configure
86 script:
87 - ninja
88 - ninja test
89
Eric Engestrom89a74672019-01-21 09:42:37 +000090.make-build:
91 extends: .build
92 variables:
93 MAKEFLAGS: "-j4"
94 before_script:
95 - if test -n "$LLVM_VERSION"; then
96 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
97 fi
98 - mkdir build
99 - cd build
100 - ../autogen.sh
101 --enable-autotools
102 --enable-debug
103 $LIBUNWIND_FLAGS
104 $DRI_LOADERS
105 --with-dri-drivers=$DRI_DRIVERS
106 $GALLIUM_ST
107 --with-gallium-drivers=$GALLIUM_DRIVERS
108 --with-vulkan-drivers=$VULKAN_DRIVERS
109 --disable-llvm-shared-libs
110 script:
111 - make
112 - eval $MAKE_CHECK_COMMAND
113
Eric Engestrom06b245b2019-01-23 15:46:10 +0000114.scons-build:
115 extends: .build
116 variables:
117 SCONSFLAGS: "-j4"
118 script:
119 - scons $SCONS_TARGET
120 - eval $SCONS_CHECK_COMMAND
121
Eric Engestrom46d23c02019-01-20 11:26:53 +0000122build:meson-vulkan:
123 extends: .meson-build
124 variables:
125 UNWIND: "false"
126 DRI_LOADERS: >
127 -D glx=disabled
128 -D gbm=false
129 -D egl=false
130 -D platforms=x11,wayland,drm
131 -D osmesa=none
132 GALLIUM_ST: >
133 -D dri3=true
134 -D gallium-vdpau=false
135 -D gallium-xvmc=false
136 -D gallium-omx=disabled
137 -D gallium-va=false
138 -D gallium-xa=false
139 -D gallium-nine=false
140 -D gallium-opencl=disabled
141 VULKAN_DRIVERS: intel,amd
142 LLVM_VERSION: "7"
Eric Engestrom89a74672019-01-21 09:42:37 +0000143
144build:make-vulkan:
145 extends: .make-build
146 variables:
147 MAKE_CHECK_COMMAND: "make -C src/gtest check && make -C src/intel check"
148 LLVM_VERSION: "7"
149 DRI_LOADERS: >
150 --disable-glx
151 --disable-gbm
152 --disable-egl
153 --with-platforms=x11,wayland,drm
154 DRI_DRIVERS: ""
155 GALLIUM_ST: >
156 --enable-dri
157 --enable-dri3
158 --disable-opencl
159 --disable-xa
160 --disable-nine
161 --disable-xvmc
162 --disable-vdpau
163 --disable-va
164 --disable-omx-bellagio
165 --disable-gallium-osmesa
166 VULKAN_DRIVERS: intel,radeon
167 LIBUNWIND_FLAGS: --disable-libunwind
Eric Engestrom06b245b2019-01-23 15:46:10 +0000168
169build:scons-nollvm:
170 extends: .scons-build
171 variables:
172 SCONS_TARGET: "llvm=0"
173 SCONS_CHECK_COMMAND: "scons llvm=0 check"