blob: 2f7e5ced297df2474ad8c705355322dd779a9b23 [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -08002 FDO_UPSTREAM_REPO: mesa/mesa
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +02003 CI_PRE_CLONE_SCRIPT: |-
4 set -o xtrace
5 /usr/bin/wget -q -O- ${CI_PROJECT_URL}/-/raw/${CI_COMMIT_SHA}/.gitlab-ci/download-git-cache.sh | sh -
6 set +o xtrace
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +02007
8include:
Eric Anholtaf7dca32020-03-06 13:23:20 -08009 - project: 'freedesktop/ci-templates'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020010 ref: &ci-templates-sha 52dd4a94044449c8481d18dcdc221a3c636366d2
Michel Dänzerd00b1c42019-04-02 16:56:54 +020011 file: '/templates/debian.yml'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020012 - project: 'freedesktop/ci-templates'
13 ref: *ci-templates-sha
14 file: '/templates/alpine.yml'
Dylan Baker19851c92019-10-23 14:36:19 -070015 - local: '.gitlab-ci/lava-gitlab-ci.yml'
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +010016 - local: '.gitlab-ci/test-source-dep.yml'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020017
Eric Engestrom329f5cd2019-01-20 11:21:45 +000018stages:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020019 - container+docs
Michel Dänzerc2366f02020-05-16 17:17:23 +020020 - container-2
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020021 - git-archive
Michel Dänzer3cdc0d52020-07-01 17:37:49 +020022 - deploy
Michel Dänzercc9493f2020-02-27 18:27:56 +010023 - meson-x86_64
24 - scons
25 - meson-misc
26 - llvmpipe
27 - softpipe
28 - freedreno
29 - panfrost
Samuel Pitoiset48e92032020-03-06 08:39:25 +010030 - radv
31 - lima
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +020032 - virgl
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020033 - radeonsi
Michel Dänzer8775b742020-01-13 09:45:57 +010034 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000035
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020036# Generic rule to not run the job during scheduled pipelines
37# ----------------------------------------------------------
38.scheduled_pipelines-rules:
39 rules: &ignore_scheduled_pipelines
40 if: '$CI_PIPELINE_SOURCE == "schedule"'
41 when: never
42
Erik Faye-Lund87747072020-06-22 11:10:29 +020043.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020044 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020045 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020046 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020047 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020048 - pip3 install sphinx sphinx_rtd_theme
49 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020050
51pages:
52 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020053 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020054 artifacts:
55 paths:
56 - public
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020057 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020058 - *ignore_scheduled_pipelines
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020059 - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master"'
60 changes: &docs-or-ci
61 - docs/**/*
62 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020063 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020064 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000065
Erik Faye-Lund87747072020-06-22 11:10:29 +020066test-docs:
67 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +020068 # Cancel job if a newer commit is pushed to the same branch
69 interruptible: true
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020070 stage: container+docs
Michel Dänzer1c612e82020-06-22 11:13:05 +020071 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020072 - *ignore_scheduled_pipelines
Michel Dänzer3f865642020-07-15 10:59:54 +020073 - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020074 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +020075 when: on_success
Michel Dänzerf13f32f2020-08-31 18:46:37 +020076 - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME && $CI_PROJECT_PATH == "mesa/mesa"'
77 changes: *docs-or-ci
78 when: on_success
Michel Dänzer615f1c82020-09-01 11:44:54 +020079 - if: '$CI_PROJECT_PATH != "mesa/mesa" || $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
80 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +020081 when: manual
82 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +020083
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000084# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020085.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020086 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020087 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +020088 # If any files affecting the pipeline are changed, build/test jobs run
89 # automatically once all dependency jobs have passed
90 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +010091 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +020092 - bin/git_sha1_gen.py
93 - bin/install_megadrivers.py
94 - bin/meson_get_version.py
95 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +010096 # GitLab CI
97 - .gitlab-ci.yml
98 - .gitlab-ci/**/*
99 # Meson
100 - meson*
101 - build-support/**/*
102 - subprojects/**/*
103 # SCons
104 - SConstruct
105 - scons/**/*
106 - common.py
107 # Source code
108 - include/**/*
109 - src/**/*
110 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200111 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100112 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100113 retry:
114 max: 2
115 when:
116 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000117
Michel Dänzer8775b742020-01-13 09:45:57 +0100118success:
119 stage: success
120 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200121 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200122 - *ignore_scheduled_pipelines
Michel Dänzer0308e632020-08-31 18:49:42 +0200123 - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer6cba4682020-06-22 11:16:17 +0200124 when: never
125 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
126 changes: *docs-or-ci
127 when: never
128 - changes: *all_paths
129 when: never
Michel Dänzera6c4db92020-08-28 17:08:57 +0200130 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
131 when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100132 variables:
133 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100134 script:
135 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
136
137
Michel Dänzere426f402019-09-06 17:35:52 +0200138.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700139 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100140 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700141 when: always
142 untracked: false
143 paths:
144 # Watch out! Artifacts are relative to the build dir.
145 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
146 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000147
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100148# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100149#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800150# FDO_DISTRIBUTION_TAG is the tag of the docker image used by later stage jobs. If the
Michel Dänzerc6c76522019-11-11 18:13:28 +0100151# image doesn't exist yet, the container stage job generates it.
152#
153# In order to generate a new image, one should generally change the tag.
154# While removing the image from the registry would also work, that's not
155# recommended except for ephemeral images during development: Replacing
156# an image after a significant amount of time might pull in newer
157# versions of gcc/clang or other packages, which might break the build
158# with older commits using the same tag.
159#
160# After merging a change resulting in generating a new image to the
161# main repository, it's recommended to remove the image from the source
162# repository's container registry, so that the image from the main
163# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200164
Eric Engestrom81b98e92019-10-14 23:04:14 +0100165.container:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200166 stage: container+docs
Eric Engestrom81b98e92019-10-14 23:04:14 +0100167 extends:
168 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200169 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200170 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200171 # Run pipeline by default in the main project if any CI pipeline
172 # configuration files were changed, to ensure docker images are up to date
Michel Dänzer45793c02020-08-27 09:36:22 +0200173 - if: '$CI_PROJECT_PATH == "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer42fe6002020-04-03 12:50:11 +0200174 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200175 - .gitlab-ci.yml
176 - .gitlab-ci/**/*
177 when: on_success
178 # Run pipeline by default if it was triggered by Marge Bot, is for a
179 # merge request, and any files affecting the pipeline were changed
Michel Dänzercbdb87c2020-07-14 11:12:19 +0200180 - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
Michel Dänzer549b4a32020-06-29 11:33:13 +0200181 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200182 *all_paths
183 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200184 # Run pipeline by default in the main project if it was not triggered by
185 # Marge Bot, and any files affecting the pipeline were changed
Michel Dänzer45793c02020-08-27 09:36:22 +0200186 - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME && $CI_PROJECT_PATH == "mesa/mesa"'
Michel Dänzer549b4a32020-06-29 11:33:13 +0200187 changes:
188 *all_paths
189 when: on_success
190 # Allow triggering jobs manually in other cases if any files affecting the
191 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200192 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200193 *all_paths
194 when: manual
195 # Otherwise, container jobs won't run
196 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100197 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800198 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100199 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700200 FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
Eric Engestrom81b98e92019-10-14 23:04:14 +0100201 # no need to pull the whole repo to build the container image
202 GIT_STRATEGY: none
203
Michel Dänzera85da8e2020-05-30 15:53:41 +0200204# Debian 10 based x86 build image base
205x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200206 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100207 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100208 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100209 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700210 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-08-13-gold"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200211
212.use-x86_build-base:
213 extends:
214 - x86_build-base
215 - .ci-run-policy
216 stage: container-2
217 variables:
218 BASE_TAG: *x86_build-base
219 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
220 needs:
221 - x86_build-base
222
223# Debian 10 based x86 main build image
224x86_build:
225 extends:
226 - .use-x86_build-base
227 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200228 FDO_DISTRIBUTION_TAG: &x86_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000229
Michel Dänzer3a48f452019-11-13 17:43:41 +0100230.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100231 variables:
232 TAG: *x86_build
233 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200234 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100235 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200236
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200237# Debian 10 based i386 cross-build image
238i386_build:
239 extends:
240 - .use-x86_build-base
241 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200242 FDO_DISTRIBUTION_TAG: &i386_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200243
244.use-i386_build:
245 variables:
246 TAG: *i386_build
247 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
248 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200249 - i386_build
250
251# Debian 10 based ppc64el cross-build image
252ppc64el_build:
253 extends:
254 - .use-x86_build-base
255 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200256 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200257
258.use-ppc64el_build:
259 variables:
260 TAG: *ppc64el_build
261 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
262 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200263 - ppc64el_build
264
265# Debian 10 based s390x cross-build image
266s390x_build:
267 extends:
268 - .use-x86_build-base
269 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200270 FDO_DISTRIBUTION_TAG: &s390x_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200271
272.use-s390x_build:
273 variables:
274 TAG: *s390x_build
275 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
276 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200277 - s390x_build
278
Michel Dänzerc2366f02020-05-16 17:17:23 +0200279# Debian 10 based x86 test image base
280x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200281 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100282 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700283 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-08-13-gold"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200284
285.use-x86_test-base:
286 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200287 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200288 - .ci-run-policy
289 stage: container-2
290 variables:
291 BASE_TAG: *x86_test-base
292 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
293 needs:
294 - x86_test-base
295
296# Debian 10 based x86 test image for GL
297x86_test-gl:
298 extends: .use-x86_test-base
299 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200300 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-09-10-libdrm"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100301
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100302# Debian 10 based x86 test image for VK
303x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200304 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100305 variables:
Eric Anholteb02b312020-08-26 16:57:44 -0700306 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-08-31-deqp-version"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100307
Michel Dänzerc6c76522019-11-11 18:13:28 +0100308# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100309x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200310 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200311 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700312 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800313 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200314
Michel Dänzer3a48f452019-11-13 17:43:41 +0100315.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100316 variables:
317 TAG: *x86_build_old
318 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200319 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100320 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200321
Michel Dänzerc6c76522019-11-11 18:13:28 +0100322# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100323arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200324 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100325 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100326 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700327 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200328 FDO_DISTRIBUTION_TAG: &arm_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000329
Michel Dänzerc6c76522019-11-11 18:13:28 +0100330.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100331 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100332 TAG: *arm_build
333 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
334 needs:
335 - arm_build
336
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200337# Debian 10 based x86 baremetal image base
338arm_test-base:
339 extends:
340 - .fdo.container-build@debian
341 - .container
342 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200343 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-09-10-libdrm"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200344
345.use-arm_test-base:
346 extends:
347 - arm_test-base
348 - .ci-run-policy
349 stage: container-2
350 variables:
351 BASE_TAG: *arm_test-base
352 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
353 needs:
354 - arm_test-base
355
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200356# x86 image with ARM64 rootfs for baremetal testing.
357arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200358 extends:
359 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700360 variables:
Eric Anholtb4317fc2020-09-02 10:49:44 -0700361 FDO_DISTRIBUTION_TAG: &arm64_test "2020-09-04-pagetables"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700362
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200363.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700364 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200365 TAG: *arm64_test
366 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700367 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200368 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700369
Daniel Stone07885cb2020-03-24 11:11:36 +0000370# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700371#
Daniel Stone07885cb2020-03-24 11:11:36 +0000372# Unlike the above Linux-based builds - including MinGW/SCons builds which
373# cross-compile for Windows - which use the freedesktop ci-templates, we
374# cannot use the same scheme here. As Windows lacks support for
375# Docker-in-Docker, and Podman does not run natively on Windows, we have
376# to open-code much of the same ourselves.
377#
378# This is achieved by first running in a native Windows shell instance
379# (host PowerShell) in the container stage to build and push the image,
380# then in the build stage by executing inside Docker.
381
382.windows-docker-vs2019:
383 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100384 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000385 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
386 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
387
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100388.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000389 extends:
390 - .container
391 - .windows-docker-vs2019
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200392 stage: container+docs
Daniel Stone07885cb2020-03-24 11:11:36 +0000393 variables:
394 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100395 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000396 tags:
397 - windows
398 - shell
399 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100400 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000401 script:
402 - .\.gitlab-ci\windows\mesa_container.ps1 $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_IMAGE $WINDOWS_UPSTREAM_IMAGE
Dylan Baker138c0032020-05-19 14:01:47 -0700403
Daniel Stone07885cb2020-03-24 11:11:36 +0000404.use-windows_build_vs2019:
405 extends: .windows-docker-vs2019
406 image: "$WINDOWS_IMAGE"
407 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100408 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100409
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200410git_archive:
411 extends: .fdo.container-build@alpine
412 stage: container+docs
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200413 rules:
414 - if: '$CI_PIPELINE_SOURCE == "schedule"'
415 when: always
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200416 variables:
417 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200418 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200419 # no need to pull the whole repo to build the container image
420 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200421 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200422 FDO_DISTRIBUTION_PACKAGES: git py3-pip
423
424
425# Git archive
426
427make git archive:
428 stage: git-archive
429 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200430 rules:
431 - if: '$CI_PIPELINE_SOURCE == "schedule"'
432 when: on_success
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200433 # ensure we are running on packet
434 tags:
435 - packet.net
436 variables:
437 FDO_DISTRIBUTION_TAG: *git-archive-tag
438 FDO_REPO_SUFFIX: *git-archive-suffix
439 needs:
440 - git_archive
441
442 script:
443 # compress the current folder
444 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
445
446 # login with the JWT token
447 - ci-fairy minio login $CI_JOB_JWT
448 - ci-fairy minio cp ../$CI_PROJECT_NAME.tar.gz minio://minio-packet.freedesktop.org/git-cache/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/$CI_PROJECT_NAME.tar.gz
449
450
Eric Engestrom46d23c02019-01-20 11:26:53 +0000451# BUILD
452
Dylan Baker06e46472019-10-23 14:21:31 -0700453# Shared between windows and Linux
454.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100455 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200456 # Cancel job if a newer commit is pushed to the same branch
457 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000458 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100459 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700460 when: always
461 paths:
462 - _build/meson-logs/*.txt
463 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200464 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700465 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700466
467# Just Linux
468.build-linux:
469 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200470 variables:
471 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100472 CCACHE_COMPRESS: "true"
473 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000474 # Use ccache transparently, and print stats before/after
475 before_script:
476 - export PATH="/usr/lib/ccache:$PATH"
477 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100478 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000479 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000480 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000481
Dylan Baker19851c92019-10-23 14:36:19 -0700482.build-windows:
483 extends: .build-common
484 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000485 - windows
486 - docker
487 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100488 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700489 cache:
490 key: ${CI_JOB_NAME}
491 paths:
492 - subprojects/packagecache
493
Eric Engestrom46d23c02019-01-20 11:26:53 +0000494.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100495 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700496 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100497 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100498 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100499 variables:
500 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000501 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200502 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000503
Eric Engestrom06b245b2019-01-23 15:46:10 +0000504.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100505 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700506 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100507 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100508 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000509 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700510 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000511
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100512meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200513 extends:
514 - .meson-build
515 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200516 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700517 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200518 DRI_LOADERS: >
519 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700520 -D gbm=enabled
521 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100522 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100523 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700524 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200525 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100526 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100527 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800528 EXTRA_OPTION: >
529 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200530 UPLOAD_FOR_LAVA: 1
531 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100532 script:
533 - .gitlab-ci/meson-build.sh
534 - .gitlab-ci/prepare-artifacts.sh
535
Michel Dänzerc56f0912020-03-12 12:29:40 +0100536meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100537 extends: .meson-build
538 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700539 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100540 DRI_LOADERS: >
541 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700542 -D gbm=enabled
543 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100544 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200545 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700546 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200547 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700548 -D gallium-vdpau=enabled
549 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200550 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700551 -D gallium-va=enabled
552 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200553 -D gallium-nine=true
554 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100555 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
Dave Airlieb38879f2020-06-19 16:40:27 +1000556 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200557 EXTRA_OPTION: >
558 -D osmesa=gallium
559 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000560 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200561 script:
562 - .gitlab-ci/meson-build.sh
563 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700564 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200565
Eric Anholt373e25e2020-08-24 10:15:35 -0700566# Test a release build with -Werror so new warnings don't sneak in.
567meson-release:
568 extends: .meson-build
569 variables:
570 UNWIND: "enabled"
571 DRI_LOADERS: >
572 -D glx=dri
573 -D gbm=enabled
574 -D egl=enabled
575 -D platforms=x11,wayland
576 GALLIUM_ST: >
577 -D dri3=enabled
578 -D gallium-extra-hud=true
579 -D gallium-vdpau=enabled
580 -D gallium-xvmc=disabled
581 -D gallium-omx=disabled
582 -D gallium-va=enabled
583 -D gallium-xa=enabled
584 -D gallium-nine=false
585 -D gallium-opencl=disabled
586 -D llvm=false
587 GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
588 BUILDTYPE: "release"
589 EXTRA_OPTION: >
590 -D osmesa=none
591 -D tools=all
592 -D werror=true
593 script:
594 - .gitlab-ci/meson-build.sh
595
Michel Dänzerc56f0912020-03-12 12:29:40 +0100596meson-classic:
597 extends: .meson-build
598 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700599 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100600 DRI_LOADERS: >
601 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700602 -D gbm=enabled
603 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100604 -D platforms=x11,wayland,drm,surfaceless
605 DRI_DRIVERS: "auto"
606 EXTRA_OPTION: >
607 -D osmesa=classic
608 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000609 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100610
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700611meson-android:
612 extends: .meson-build
613 variables:
614 UNWIND: "disabled"
615 DRI_LOADERS: >
616 -D glx=disabled
617 -D gbm=disabled
618 -D egl=enabled
619 -D platforms=android
620 GALLIUM_DRIVERS: freedreno
621 VULKAN_DRIVERS: freedreno,intel,amd
622 EXTRA_OPTION: >
623 -D android-stub=true
624 -D werror=true
625 GALLIUM_ST: >
626 -D dri3=disabled
627 -D gallium-vdpau=disabled
628 -D gallium-xvmc=disabled
629 -D gallium-omx=disabled
630 -D gallium-va=disabled
631 -D gallium-xa=disabled
632 -D gallium-nine=false
633 -D gallium-opencl=disabled
634
Michel Dänzere5364462019-09-13 11:59:43 +0200635.meson-cross:
636 extends:
637 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100638 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200639 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700640 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200641 DRI_LOADERS: >
642 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700643 -D gbm=disabled
644 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100645 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200646 -D osmesa=none
647 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700648 -D dri3=disabled
649 -D gallium-vdpau=disabled
650 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200651 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700652 -D gallium-va=disabled
653 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200654 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100655 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200656
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200657.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100658 extends:
659 - .meson-cross
660 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200661 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200662 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200663 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100664 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200665 tags:
666 - aarch64
667
668meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100669 extends:
670 - .meson-arm
671 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200672 variables:
673 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200674 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800675 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700676 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200677 UPLOAD_FOR_LAVA: 1
678 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100679 script:
680 - .gitlab-ci/meson-build.sh
681 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200682
683meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200684 extends:
685 - .meson-arm
686 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200687 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100688 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800689 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700690 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200691 UPLOAD_FOR_LAVA: 1
692 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200693 script:
694 - .gitlab-ci/meson-build.sh
695 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200696
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100697meson-arm64-build-test:
698 extends:
699 - .meson-arm
700 - .ci-deqp-artifacts
701 variables:
702 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200703 EXTRA_OPTION: >
704 -Dtools=panfrost
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100705 script:
706 - .gitlab-ci/meson-build.sh
707
Michel Dänzera2cce702019-03-20 15:58:31 +0100708meson-clang:
709 extends: .meson-build
710 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700711 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100712 DRI_LOADERS: >
713 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100714 DRI_DRIVERS: "auto"
715 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100716 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100717 CC: "ccache clang-9"
718 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100719
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100720.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700721 extends:
722 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000723 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100724 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700725 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000726 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700727
Michel Dänzer82b30092019-05-03 18:19:25 +0200728scons-win64:
729 extends: .scons-build
730 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000731 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200732 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000733 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000734
Michel Dänzer68977152019-05-03 10:58:48 +0200735meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000736 extends: .meson-build
737 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700738 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000739 DRI_LOADERS: >
740 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700741 -D egl=disabled
742 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200743 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000744 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700745 -D dri3=disabled
746 -D gallium-vdpau=disabled
747 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000748 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700749 -D gallium-va=disabled
750 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000751 -D gallium-nine=false
752 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200753 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200754 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200755 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200756
757meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200758 extends:
759 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100760 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200761 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700762 UNWIND: "disabled"
Michel Dänzer8a199922019-09-06 17:04:47 +0200763 DRI_LOADERS: >
764 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700765 -D egl=disabled
766 -D gbm=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100767 -D platforms=[]
Michel Dänzer8a199922019-09-06 17:04:47 +0200768 GALLIUM_DRIVERS: "i915,r600"
769 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200770 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
771 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
772 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Michel Dänzer262e3882020-05-30 23:55:28 +0200773 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
774 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000775
Michel Dänzer82b30092019-05-03 18:19:25 +0200776meson-vulkan:
777 extends: .meson-build
778 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700779 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200780 DRI_LOADERS: >
781 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700782 -D gbm=disabled
783 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100784 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200785 -D osmesa=none
786 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700787 -D dri3=enabled
788 -D gallium-vdpau=disabled
789 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200790 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700791 -D gallium-va=disabled
792 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200793 -D gallium-nine=false
794 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200795 -D b_sanitize=undefined
796 -D c_args=-fno-sanitize-recover=all
797 -D cpp_args=-fno-sanitize-recover=all
798 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200799 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200800 EXTRA_OPTION: >
801 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100802 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800803 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200804
Eric Anholt11aa32a2019-07-11 12:58:28 -0700805meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200806 extends:
807 - .meson-cross
808 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700809 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100810 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100811 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100812 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700813 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700814 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800815 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700816
Michel Dänzer65610ec2020-01-30 18:21:15 +0100817meson-s390x:
818 extends:
819 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200820 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100821 tags:
822 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100823 variables:
824 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200825 EXTRA_OPTION: >
826 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100827 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100828
829meson-ppc64el:
830 extends:
831 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200832 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100833 variables:
834 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200835 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100836 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100837 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100838
Dylan Baker449f8312019-10-11 09:04:14 -0700839meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700840 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100841 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700842 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700843 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700844 DRI_DRIVERS: ""
845 GALLIUM_DRIVERS: "swrast"
846 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700847 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700848 -Dosmesa=gallium
849 --cross-file=.gitlab-ci/x86_64-w64-mingw32
850
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100851.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200852 extends:
853 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200854 # Cancel job if a newer commit is pushed to the same branch
855 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700856 variables:
857 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200858 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700859 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
860 - rm -rf install
861 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100862 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700863 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800864 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100865 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700866 paths:
867 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100868
869.test-gl:
870 extends:
871 - .test
872 variables:
873 TAG: *x86_test-gl
874 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200875 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100876 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100877 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700878
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100879.test-vk:
880 extends:
881 - .test
882 variables:
883 TAG: *x86_test-vk
884 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
885 needs:
886 - meson-testing
887 - x86_test-vk
888
Michel Dänzer576f7b62019-10-22 17:16:52 +0200889.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100890 extends:
891 - .test-gl
892 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100893 artifacts:
894 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100895 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100896 paths:
897 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200898 variables:
899 LIBGL_ALWAYS_SOFTWARE: 1
900 PIGLIT_NO_WINDOW: 1
901 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100902 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200903
904piglit-quick_gl:
905 extends: .piglit-test
906 variables:
907 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000908 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200909 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100910 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -0800911 -x egl_ext_device_
912 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800913 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200914 -x glx-multithread-clearbuffer
915 -x glx-multithread-shader-compile
916 -x max-texture-size
917 -x maxsize
918 PIGLIT_PROFILES: quick_gl
919
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100920piglit-glslparser:
921 extends: .piglit-test
922 variables:
923 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000924 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100925 PIGLIT_PROFILES: glslparser
926
927piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200928 extends: .piglit-test
929 variables:
930 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000931 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100932 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200933
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100934.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200935 variables:
936 DEQP_SKIPS: deqp-default-skips.txt
937 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100938 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200939
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100940.deqp-test-gl:
941 extends:
942 - .test-gl
943 - .deqp-test
944
945.deqp-test-vk:
946 extends:
947 - .test-vk
948 - .deqp-test
949 variables:
950 DEQP_VER: vk
951
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100952.fossilize-test:
953 extends: .test-vk
954 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100955 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +0200956 artifacts:
957 when: on_failure
958 name: "mesa_${CI_JOB_NAME}"
959 paths:
960 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100961
Michel Dänzer71436f92020-03-03 18:17:12 +0100962llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700963 variables:
964 DEQP_VER: gles2
Dave Airliee6b2af52019-12-03 15:23:45 +1000965 NIR_VALIDATE: 0
Eric Anholtfd24a952020-06-26 10:59:41 -0700966 # Don't use threads inside llvmpipe, we've already got all cores
967 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -0800968 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700969 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
970 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -0700971 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100972 extends:
973 - .deqp-test-gl
974 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700975
Michel Dänzer71436f92020-03-03 18:17:12 +0100976softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100977 extends:
978 - llvmpipe-gles2
979 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700980 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700981 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800982 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700983 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -0700984 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -0700985
Michel Dänzer71436f92020-03-03 18:17:12 +0100986softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -0700987 variables:
988 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +0100989 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -0800990
Michel Dänzer71436f92020-03-03 18:17:12 +0100991softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +0200992 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -0800993 variables:
994 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +0100995 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700996
Eric Anholt86840612020-08-25 13:43:27 -0700997# Note that KHR-GL3* test sets include all tests from the previous
998# version, so we only need to run one test list (unlike dEQP-GLES,
999# where the test sets are separate).
1000softpipe-gl:
1001 variables:
1002 DEQP_VER: gl33
1003 extends:
1004 - softpipe-gles2
1005
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001006virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001007 variables:
1008 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001009 NIR_VALIDATE: 0
1010 DEQP_NO_SAVE_RESULTS: 1
Daniel Stonee513d8d2020-08-17 18:47:16 +01001011 DEQP_SKIPS: deqp-virgl-gl-skips.txt
Eric Anholtfd24a952020-06-26 10:59:41 -07001012 # Don't use threads inside llvmpipe, we've already got all cores
1013 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001014 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001015 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
1016 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001017 LIBGL_ALWAYS_SOFTWARE: "true"
1018 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001019 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001020 extends:
1021 - .deqp-test-gl
1022 - .virgl-rules
1023
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001024virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001025 variables:
1026 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001027 DEQP_RUNNER_OPTIONS: "--timeout 180"
1028 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001029
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001030virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +02001031 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001032 variables:
1033 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001034 MESA_GLES_VERSION_OVERRIDE: "3.1"
1035 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +10001036 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001037 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001038
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +02001039virgl-gl30-on-gl:
1040 variables:
1041 DEQP_VER: gl30
1042 extends: virgl-gles2-on-gl
1043
1044virgl-gl31-on-gl:
1045 variables:
1046 DEQP_VER: gl31
1047 extends: virgl-gles2-on-gl
1048
1049virgl-gl32-on-gl:
1050 variables:
1051 DEQP_VER: gl32
1052 extends: virgl-gles2-on-gl
1053
Eric Anholt8edaa842020-03-19 11:45:01 -07001054# Rules for tests that should not be present in MRs or the main
1055# project's pipeline (don't block marge or report red on
1056# mesa/mesamaster) but should be present on pipelines in personal
1057# branches (so you can opt in to running the flaky test when you want
1058# to).
1059.test-manual:
1060 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001061 - *ignore_scheduled_pipelines
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001062 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
1063 changes:
1064 *all_paths
1065 when: manual
1066 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001067
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001068virgl-gles2-on-gles:
1069 variables:
1070 VIRGL_HOST_API: GLES
1071 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1072 extends:
1073 - virgl-gles2-on-gl
1074 - .test-manual
1075
1076virgl-gles3-on-gles:
1077 variables:
1078 VIRGL_HOST_API: GLES
1079 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1080 extends:
1081 - virgl-gles3-on-gl
1082 - .test-manual
1083
1084virgl-gles31-on-gles:
1085 variables:
1086 VIRGL_HOST_API: GLES
1087 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1088 extends:
1089 - virgl-gles31-on-gl
1090 - .test-manual
1091
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001092arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001093 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001094 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001095 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001096 BM_KERNEL: /lava-files/cheza-kernel
1097 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 root=/dev/nfs rw nfsrootdebug nfsroot=,tcp,nfsvers=4.2 init=/init"
Eric Anholt6f0dc082019-06-28 16:35:32 -07001098 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001099 DEQP_FLAKES: deqp-freedreno-a630-flakes.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001100 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001101 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001102 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001103 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001104 - google-freedreno-cheza
1105 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001106 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001107
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001108arm64_a630_gles31:
1109 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001110 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001111 DEQP_VER: gles31
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001112 # gles31 is about 12 minutes with validation enabled.
1113 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001114
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001115arm64_a630_gles3:
1116 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001117 variables:
1118 DEQP_VER: gles3
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001119 # gles3 is about 15 minutes with validation enabled.
1120 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001121
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001122# We almost always manage to lower UBOs back to constant uploads in
1123# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001124arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001125 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001126 variables:
1127 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001128 IR3_SHADER_DEBUG: nouboopt
1129 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001130
1131# The driver does some guessing as to whether to render using gmem
1132# or bypass, and some GLES3.1 features interact with either one.
1133# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001134arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001135 extends: arm64_a630_gles31
1136 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001137 CI_NODE_INDEX: 1
1138 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001139 FD_MESA_DEBUG: nogmem
1140 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1141
Rob Clarke5169b12020-07-16 14:20:22 -07001142arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001143 extends:
1144 - arm64_a630_gles2
1145 variables:
1146 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1147 DEVICE_NAME: "freedreno-a630"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001148 DRIVER_NAME: "freedreno"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001149 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001150 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001151 # This lets us run several more traces which don't use any features we're
1152 # missing.
1153 MESA_GLSL_VERSION_OVERRIDE: "460"
1154 MESA_GL_VERSION_OVERRIDE: "4.6"
Alexandros Frantzisf4210df2020-09-04 14:20:39 +03001155 artifacts:
1156 reports:
1157 junit: results/junit.xml
Eric Anholtb88c46f2020-06-08 14:51:59 -07001158
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001159# Along with checking gmem path, check that we don't get obvious nir
1160# validation failures (though it's too expensive to have it on for the
1161# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001162arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001163 extends: arm64_a630_gles31
1164 variables:
1165 CI_NODE_INDEX: 1
1166 CI_NODE_TOTAL: 5
1167 FD_MESA_DEBUG: nobypass
1168 NIR_VALIDATE: 1
Eric Anholt5082ac02020-04-17 12:02:37 -07001169
Eric Anholt5c0d34c2020-08-27 09:28:53 -07001170arm64_a630_gl:
1171 extends: arm64_a630_gles2
1172 variables:
1173 DEQP_VER: gl30
1174
Jonathan Marekbe33d582020-07-14 10:58:56 -04001175arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001176 extends: arm64_a630_gles2
1177 variables:
1178 DEQP_VER: vk
1179 CI_NODE_INDEX: 1
1180 CI_NODE_TOTAL: 50
1181 VK_DRIVER: freedreno
1182 # Force binning in the main run, which makes sure we render at
1183 # least 2 bins. This is the path that impacts the most different
1184 # features. However, we end up with flaky results in
1185 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1186 TU_DEBUG: forcebin
1187
1188# Do a separate sysmem pass over the testcases that really affect sysmem
1189# rendering. This is currently very flaky, leave it as an option for devs
1190# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001191arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001192 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001193 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001194 variables:
1195 CI_NODE_INDEX: 1
1196 CI_NODE_TOTAL: 10
1197 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1198 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1199 TU_DEBUG: sysmem
1200
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001201.baremetal-test:
1202 extends:
1203 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001204 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001205 # Cancel job if a newer commit is pushed to the same branch
1206 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001207 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001208 artifacts:
1209 when: always
1210 name: "mesa_${CI_JOB_NAME}"
1211 paths:
1212 - results/
1213 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001214
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001215arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001216 extends:
1217 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001218 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001219 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001220 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001221 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001222 BM_DTB: /lava-files/apq8016-sbc.dtb
1223 BM_ROOTFS: /lava-files/rootfs-arm64
1224 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001225 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001226 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001227 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001228 DEQP_SKIPS: deqp-default-skips.txt
1229 DEQP_FLAKES: deqp-freedreno-a307-flakes.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001230 DEQP_VER: gles2
1231 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001232 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001233 # Since we can't get artifacts back yet, skip making them.
1234 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001235 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001236 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001237 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001238 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001239 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001240 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001241 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001242 - google-freedreno-db410c
1243
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001244# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001245arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001246 extends:
1247 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001248 variables:
1249 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001250 DEQP_PARALLEL: 1
1251 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001252 CI_NODE_TOTAL: 25
1253 NIR_VALIDATE: 0
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001254
Eric Anholtae442c32020-05-15 16:15:07 -07001255# Fractional runs with debug options. Note that since we're not
1256# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1257arm64_a306_gles3_options:
1258 extends: arm64_a306_gles2
1259 variables:
1260 DEQP_VER: gles3
1261 script:
1262 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001263 - DEQP_RUN_SUFFIX=-nouboopt IR3_SHADER_DEBUG=nouboopt DEQP_CASELIST_FILTER="functional.*ubo" ./install/bare-metal/fastboot.sh
Eric Anholtae442c32020-05-15 16:15:07 -07001264
Eric Anholt4bc15e72020-03-03 14:38:09 -08001265arm64_a530_gles2:
1266 extends:
1267 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001268 variables:
1269 BM_KERNEL: /lava-files/db820c-kernel
1270 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001271 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1272 # current upstream kernel.
1273 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001274 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001275 DEQP_FLAKES: deqp-freedreno-a530-flakes.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001276 DEQP_EXPECTED_RENDERER: FD530
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001277 NIR_VALIDATE: 0
Eric Anholt4bc15e72020-03-03 14:38:09 -08001278 tags:
1279 - google-freedreno-db820c
1280
1281arm64_a530_gles3:
1282 extends:
1283 - arm64_a530_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001284 variables:
1285 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001286 DEQP_PARALLEL: 1
1287 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001288 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001289
Eric Anholt6c011522020-04-22 12:08:06 -07001290arm64_a530_gles31:
1291 extends:
1292 - arm64_a530_gles3
1293 variables:
1294 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001295 CI_NODE_INDEX: 1
1296 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001297
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001298# RADV CI
1299.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001300 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001301 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001302 variables:
1303 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001304 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001305
Eric Anholt8edaa842020-03-19 11:45:01 -07001306# Can only be triggered manually on personal branches because RADV is the only
1307# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001308radv_polaris10_vkcts:
1309 extends:
1310 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001311 - .test-radv
1312 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001313 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001314 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1315 tags:
1316 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001317
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001318radv-fossils:
1319 extends:
1320 - .fossilize-test
1321 - .test-radv
1322 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001323 # Pitcairn (GFX6)
1324 - export RADV_FORCE_FAMILY="pitcairn"
1325 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001326 # Bonaire (GFX7)
1327 - export RADV_FORCE_FAMILY="bonaire"
1328 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001329 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001330 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001331 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001332 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001333 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001334 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001335 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001336 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001337 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001338 # Sienna Cichlid (GFX10)
1339 - export RADV_FORCE_FAMILY="gfx1030"
1340 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001341
Andres Gomez0ac731b12020-02-20 18:26:30 +02001342# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001343.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001344 cache:
1345 key: ${CI_JOB_NAME}
1346 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001347 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001348 variables:
1349 TRACIE_UPLOAD_TO_MINIO: 1
Alexandros Frantzis7e82e252020-09-04 12:44:53 +03001350 artifacts:
1351 reports:
1352 junit: results/junit.xml
Andres Gomez0ac731b12020-02-20 18:26:30 +02001353
1354.traces-test-gl:
1355 extends:
1356 - .test-gl
1357 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001358 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001359 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001360
1361.traces-test-vk:
1362 extends:
1363 - .test-vk
1364 - .traces-test
1365 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001366 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001367
1368llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001369 extends:
1370 - .traces-test-gl
1371 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001372 variables:
1373 LIBGL_ALWAYS_SOFTWARE: "true"
1374 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001375 DEVICE_NAME: "gl-vmware-llvmpipe"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001376 DRIVER_NAME: "llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001377
1378radv-polaris10-traces:
1379 extends:
1380 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001381 - .test-radv
1382 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001383 variables:
1384 DEVICE_NAME: "vk-amd-polaris10"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001385 DRIVER_NAME: "radv"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001386 tags:
1387 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001388
Andres Gomezb6b100c2020-04-24 19:32:42 +03001389radv-raven-traces:
1390 extends:
1391 - .traces-test-vk
1392 - .test-radv
1393 - .test-manual
1394 variables:
1395 DEVICE_NAME: "vk-amd-raven"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001396 DRIVER_NAME: "radv"
Andres Gomezb6b100c2020-04-24 19:32:42 +03001397 tags:
1398 - raven
1399
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001400virgl-traces:
1401 extends:
1402 - .traces-test-gl
1403 - .virgl-rules
1404 variables:
1405 LIBGL_ALWAYS_SOFTWARE: "true"
1406 GALLIUM_DRIVER: "virpipe"
1407 DEVICE_NAME: "gl-virgl"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001408 DRIVER_NAME: "virgl"
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001409 MESA_GLES_VERSION_OVERRIDE: "3.1"
1410 MESA_GLSL_VERSION_OVERRIDE: "310"