blob: 15eb5c854a19f89c8d63a86e1bddb14452eb364e [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
Michel Dänzerc3ae82b2020-09-08 17:44:40 +020040 if: &is-scheduled-pipeline '$CI_PIPELINE_SOURCE == "schedule"'
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020041 when: never
42
Michel Dänzerac56d662020-09-08 12:20:39 +020043# YAML anchors for rule conditions
44# --------------------------------
45.rules-anchors:
46 rules:
Michel Dänzer208876b2020-09-08 18:00:21 +020047 # For Marge Bot
48 - if: &is-for-marge '$GITLAB_USER_LOGIN == "marge-bot"'
49 when: never
Michel Dänzer22a7c252020-09-08 17:52:24 +020050 # Forked project branch
Michel Dänzer8cb450f2020-09-08 18:02:58 +020051 - if: &is-forked-branch '$CI_PROJECT_NAMESPACE != "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer22a7c252020-09-08 17:52:24 +020052 when: manual
Michel Dänzer24f53292020-09-08 17:30:49 +020053 # Forked project branch / pre-merge pipeline
Michel Dänzer8cb450f2020-09-08 18:02:58 +020054 - if: &is-forked-branch-or-pre-merge '$CI_PROJECT_NAMESPACE != "mesa" || $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
Michel Dänzer24f53292020-09-08 17:30:49 +020055 when: manual
Michel Dänzerac56d662020-09-08 12:20:39 +020056 # Pipeline runs for the master branch of the main project
Michel Dänzerefec5762020-09-02 18:35:32 +020057 - if: &is-main-master '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != "master"'
Michel Dänzerac56d662020-09-08 12:20:39 +020058 when: always
Michel Dänzerb47f1bb2020-09-08 17:47:18 +020059 # Post-merge pipeline
60 - if: &is-post-merge '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
61 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +020062 # Post-merge pipeline, not for Marge Bot
Michel Dänzer8cb450f2020-09-08 18:02:58 +020063 - if: &is-post-merge-not-for-marge '$CI_PROJECT_NAMESPACE == "mesa" && $GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzera33026e2020-09-08 12:36:11 +020064 when: on_success
Michel Dänzer0fcb8b32020-09-08 17:58:32 +020065 # Pre-merge pipeline
66 - if: &is-pre-merge '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
67 when: on_success
Michel Dänzerf79ae942020-09-08 12:31:08 +020068 # Pre-merge pipeline for Marge Bot
69 - if: &is-pre-merge-for-marge '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
70 when: on_success
Michel Dänzerac56d662020-09-08 12:20:39 +020071
72
Erik Faye-Lund87747072020-06-22 11:10:29 +020073.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020074 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020075 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020076 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020077 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020078 - pip3 install sphinx sphinx_rtd_theme
79 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020080
81pages:
82 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020083 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020084 artifacts:
85 paths:
86 - public
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020087 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020088 - *ignore_scheduled_pipelines
Michel Dänzerac56d662020-09-08 12:20:39 +020089 - if: *is-main-master
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020090 changes: &docs-or-ci
91 - docs/**/*
92 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020093 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020094 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000095
Erik Faye-Lund87747072020-06-22 11:10:29 +020096test-docs:
97 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +020098 # Cancel job if a newer commit is pushed to the same branch
99 interruptible: true
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200100 stage: container+docs
Michel Dänzer1c612e82020-06-22 11:13:05 +0200101 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200102 - *ignore_scheduled_pipelines
Michel Dänzerf79ae942020-09-08 12:31:08 +0200103 - if: *is-pre-merge-for-marge
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +0200104 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200105 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +0200106 - if: *is-post-merge-not-for-marge
Michel Dänzerf13f32f2020-08-31 18:46:37 +0200107 changes: *docs-or-ci
108 when: on_success
Michel Dänzer24f53292020-09-08 17:30:49 +0200109 - if: *is-forked-branch-or-pre-merge
Michel Dänzer615f1c82020-09-01 11:44:54 +0200110 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200111 when: manual
112 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +0200113
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000114# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +0200115.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +0200116 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200117 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +0200118 # If any files affecting the pipeline are changed, build/test jobs run
119 # automatically once all dependency jobs have passed
120 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +0100121 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +0200122 - bin/git_sha1_gen.py
123 - bin/install_megadrivers.py
124 - bin/meson_get_version.py
125 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +0100126 # GitLab CI
127 - .gitlab-ci.yml
128 - .gitlab-ci/**/*
129 # Meson
130 - meson*
131 - build-support/**/*
132 - subprojects/**/*
133 # SCons
134 - SConstruct
135 - scons/**/*
136 - common.py
137 # Source code
138 - include/**/*
139 - src/**/*
140 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200141 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100142 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100143 retry:
144 max: 2
145 when:
146 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000147
Michel Dänzer8775b742020-01-13 09:45:57 +0100148success:
149 stage: success
150 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200151 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200152 - *ignore_scheduled_pipelines
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200153 - if: *is-post-merge
Michel Dänzer6cba4682020-06-22 11:16:17 +0200154 when: never
Michel Dänzer208876b2020-09-08 18:00:21 +0200155 - if: *is-for-marge
Michel Dänzer6cba4682020-06-22 11:16:17 +0200156 changes: *docs-or-ci
157 when: never
158 - changes: *all_paths
159 when: never
Michel Dänzer0fcb8b32020-09-08 17:58:32 +0200160 - if: *is-pre-merge
Michel Dänzera6c4db92020-08-28 17:08:57 +0200161 when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100162 variables:
163 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100164 script:
165 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
166
167
Michel Dänzere426f402019-09-06 17:35:52 +0200168.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700169 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100170 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700171 when: always
172 untracked: false
173 paths:
174 # Watch out! Artifacts are relative to the build dir.
175 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
176 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000177
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100178# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100179#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800180# 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 +0100181# image doesn't exist yet, the container stage job generates it.
182#
183# In order to generate a new image, one should generally change the tag.
184# While removing the image from the registry would also work, that's not
185# recommended except for ephemeral images during development: Replacing
186# an image after a significant amount of time might pull in newer
187# versions of gcc/clang or other packages, which might break the build
188# with older commits using the same tag.
189#
190# After merging a change resulting in generating a new image to the
191# main repository, it's recommended to remove the image from the source
192# repository's container registry, so that the image from the main
193# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200194
Eric Engestrom81b98e92019-10-14 23:04:14 +0100195.container:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200196 stage: container+docs
Eric Engestrom81b98e92019-10-14 23:04:14 +0100197 extends:
198 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200199 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200200 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200201 # Run pipeline by default in the main project if any CI pipeline
202 # configuration files were changed, to ensure docker images are up to date
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200203 - if: *is-post-merge
Michel Dänzer42fe6002020-04-03 12:50:11 +0200204 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200205 - .gitlab-ci.yml
206 - .gitlab-ci/**/*
207 when: on_success
208 # Run pipeline by default if it was triggered by Marge Bot, is for a
209 # merge request, and any files affecting the pipeline were changed
Michel Dänzerf79ae942020-09-08 12:31:08 +0200210 - if: *is-pre-merge-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200211 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200212 *all_paths
213 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200214 # Run pipeline by default in the main project if it was not triggered by
215 # Marge Bot, and any files affecting the pipeline were changed
Michel Dänzera33026e2020-09-08 12:36:11 +0200216 - if: *is-post-merge-not-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200217 changes:
218 *all_paths
219 when: on_success
220 # Allow triggering jobs manually in other cases if any files affecting the
221 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200222 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200223 *all_paths
224 when: manual
225 # Otherwise, container jobs won't run
226 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100227 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800228 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100229 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700230 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 +0100231 # no need to pull the whole repo to build the container image
232 GIT_STRATEGY: none
233
Michel Dänzera85da8e2020-05-30 15:53:41 +0200234# Debian 10 based x86 build image base
235x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200236 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100237 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100238 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100239 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700240 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-08-13-gold"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200241
242.use-x86_build-base:
243 extends:
244 - x86_build-base
245 - .ci-run-policy
246 stage: container-2
247 variables:
248 BASE_TAG: *x86_build-base
249 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
250 needs:
251 - x86_build-base
252
253# Debian 10 based x86 main build image
254x86_build:
255 extends:
256 - .use-x86_build-base
257 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200258 FDO_DISTRIBUTION_TAG: &x86_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000259
Michel Dänzer3a48f452019-11-13 17:43:41 +0100260.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100261 variables:
262 TAG: *x86_build
263 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200264 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100265 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200266
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200267# Debian 10 based i386 cross-build image
268i386_build:
269 extends:
270 - .use-x86_build-base
271 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200272 FDO_DISTRIBUTION_TAG: &i386_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200273
274.use-i386_build:
275 variables:
276 TAG: *i386_build
277 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
278 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200279 - i386_build
280
281# Debian 10 based ppc64el cross-build image
282ppc64el_build:
283 extends:
284 - .use-x86_build-base
285 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200286 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200287
288.use-ppc64el_build:
289 variables:
290 TAG: *ppc64el_build
291 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
292 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200293 - ppc64el_build
294
295# Debian 10 based s390x cross-build image
296s390x_build:
297 extends:
298 - .use-x86_build-base
299 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200300 FDO_DISTRIBUTION_TAG: &s390x_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200301
302.use-s390x_build:
303 variables:
304 TAG: *s390x_build
305 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
306 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200307 - s390x_build
308
Michel Dänzerc2366f02020-05-16 17:17:23 +0200309# Debian 10 based x86 test image base
310x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200311 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100312 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700313 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-08-13-gold"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200314
315.use-x86_test-base:
316 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200317 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200318 - .ci-run-policy
319 stage: container-2
320 variables:
321 BASE_TAG: *x86_test-base
322 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
323 needs:
324 - x86_test-base
325
326# Debian 10 based x86 test image for GL
327x86_test-gl:
328 extends: .use-x86_test-base
329 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200330 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-09-10-libdrm"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100331
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100332# Debian 10 based x86 test image for VK
333x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200334 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100335 variables:
Eric Anholteb02b312020-08-26 16:57:44 -0700336 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-08-31-deqp-version"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100337
Michel Dänzerc6c76522019-11-11 18:13:28 +0100338# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100339x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200340 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200341 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700342 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800343 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200344
Michel Dänzer3a48f452019-11-13 17:43:41 +0100345.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100346 variables:
347 TAG: *x86_build_old
348 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200349 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100350 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200351
Michel Dänzerc6c76522019-11-11 18:13:28 +0100352# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100353arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200354 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100355 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100356 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700357 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200358 FDO_DISTRIBUTION_TAG: &arm_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000359
Michel Dänzerc6c76522019-11-11 18:13:28 +0100360.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100361 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100362 TAG: *arm_build
363 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
364 needs:
365 - arm_build
366
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200367# Debian 10 based x86 baremetal image base
368arm_test-base:
369 extends:
370 - .fdo.container-build@debian
371 - .container
372 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200373 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-09-10-libdrm"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200374
375.use-arm_test-base:
376 extends:
377 - arm_test-base
378 - .ci-run-policy
379 stage: container-2
380 variables:
381 BASE_TAG: *arm_test-base
382 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
383 needs:
384 - arm_test-base
385
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200386# x86 image with ARM64 rootfs for baremetal testing.
387arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200388 extends:
389 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700390 variables:
Eric Anholtb4317fc2020-09-02 10:49:44 -0700391 FDO_DISTRIBUTION_TAG: &arm64_test "2020-09-04-pagetables"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700392
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200393.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700394 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200395 TAG: *arm64_test
396 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700397 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200398 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700399
Daniel Stone07885cb2020-03-24 11:11:36 +0000400# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700401#
Daniel Stone07885cb2020-03-24 11:11:36 +0000402# Unlike the above Linux-based builds - including MinGW/SCons builds which
403# cross-compile for Windows - which use the freedesktop ci-templates, we
404# cannot use the same scheme here. As Windows lacks support for
405# Docker-in-Docker, and Podman does not run natively on Windows, we have
406# to open-code much of the same ourselves.
407#
408# This is achieved by first running in a native Windows shell instance
409# (host PowerShell) in the container stage to build and push the image,
410# then in the build stage by executing inside Docker.
411
412.windows-docker-vs2019:
413 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100414 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000415 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
416 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
417
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100418.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000419 extends:
420 - .container
421 - .windows-docker-vs2019
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200422 stage: container+docs
Daniel Stone07885cb2020-03-24 11:11:36 +0000423 variables:
424 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100425 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000426 tags:
427 - windows
428 - shell
429 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100430 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000431 script:
432 - .\.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 -0700433
Daniel Stone07885cb2020-03-24 11:11:36 +0000434.use-windows_build_vs2019:
435 extends: .windows-docker-vs2019
436 image: "$WINDOWS_IMAGE"
437 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100438 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100439
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200440git_archive:
441 extends: .fdo.container-build@alpine
442 stage: container+docs
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200443 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200444 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200445 when: always
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200446 variables:
447 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200448 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200449 # no need to pull the whole repo to build the container image
450 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200451 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200452 FDO_DISTRIBUTION_PACKAGES: git py3-pip
453
454
455# Git archive
456
457make git archive:
458 stage: git-archive
459 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200460 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200461 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200462 when: on_success
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200463 # ensure we are running on packet
464 tags:
465 - packet.net
466 variables:
467 FDO_DISTRIBUTION_TAG: *git-archive-tag
468 FDO_REPO_SUFFIX: *git-archive-suffix
469 needs:
470 - git_archive
471
472 script:
473 # compress the current folder
474 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
475
476 # login with the JWT token
477 - ci-fairy minio login $CI_JOB_JWT
478 - 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
479
480
Eric Engestrom46d23c02019-01-20 11:26:53 +0000481# BUILD
482
Dylan Baker06e46472019-10-23 14:21:31 -0700483# Shared between windows and Linux
484.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100485 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200486 # Cancel job if a newer commit is pushed to the same branch
487 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000488 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100489 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700490 when: always
491 paths:
492 - _build/meson-logs/*.txt
493 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200494 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700495 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700496
497# Just Linux
498.build-linux:
499 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200500 variables:
501 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100502 CCACHE_COMPRESS: "true"
503 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000504 # Use ccache transparently, and print stats before/after
505 before_script:
506 - export PATH="/usr/lib/ccache:$PATH"
507 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100508 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000509 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000510 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000511
Dylan Baker19851c92019-10-23 14:36:19 -0700512.build-windows:
513 extends: .build-common
514 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000515 - windows
516 - docker
517 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100518 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700519 cache:
520 key: ${CI_JOB_NAME}
521 paths:
522 - subprojects/packagecache
523
Eric Engestrom46d23c02019-01-20 11:26:53 +0000524.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100525 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700526 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100527 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100528 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100529 variables:
530 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000531 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200532 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000533
Eric Engestrom06b245b2019-01-23 15:46:10 +0000534.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100535 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700536 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100537 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100538 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000539 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700540 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000541
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100542meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200543 extends:
544 - .meson-build
545 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200546 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700547 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200548 DRI_LOADERS: >
549 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700550 -D gbm=enabled
551 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100552 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100553 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700554 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200555 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100556 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100557 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800558 EXTRA_OPTION: >
559 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200560 UPLOAD_FOR_LAVA: 1
561 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100562 script:
563 - .gitlab-ci/meson-build.sh
564 - .gitlab-ci/prepare-artifacts.sh
565
Michel Dänzerc56f0912020-03-12 12:29:40 +0100566meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100567 extends: .meson-build
568 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700569 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100570 DRI_LOADERS: >
571 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700572 -D gbm=enabled
573 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100574 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200575 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700576 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200577 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700578 -D gallium-vdpau=enabled
579 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200580 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700581 -D gallium-va=enabled
582 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200583 -D gallium-nine=true
584 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100585 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 +1000586 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200587 EXTRA_OPTION: >
588 -D osmesa=gallium
589 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000590 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200591 script:
592 - .gitlab-ci/meson-build.sh
593 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700594 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200595
Eric Anholt373e25e2020-08-24 10:15:35 -0700596# Test a release build with -Werror so new warnings don't sneak in.
597meson-release:
598 extends: .meson-build
599 variables:
600 UNWIND: "enabled"
601 DRI_LOADERS: >
602 -D glx=dri
603 -D gbm=enabled
604 -D egl=enabled
605 -D platforms=x11,wayland
606 GALLIUM_ST: >
607 -D dri3=enabled
608 -D gallium-extra-hud=true
609 -D gallium-vdpau=enabled
610 -D gallium-xvmc=disabled
611 -D gallium-omx=disabled
612 -D gallium-va=enabled
613 -D gallium-xa=enabled
614 -D gallium-nine=false
615 -D gallium-opencl=disabled
616 -D llvm=false
617 GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
618 BUILDTYPE: "release"
619 EXTRA_OPTION: >
620 -D osmesa=none
621 -D tools=all
622 -D werror=true
623 script:
624 - .gitlab-ci/meson-build.sh
625
Michel Dänzerc56f0912020-03-12 12:29:40 +0100626meson-classic:
627 extends: .meson-build
628 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700629 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100630 DRI_LOADERS: >
631 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700632 -D gbm=enabled
633 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100634 -D platforms=x11,wayland,drm,surfaceless
635 DRI_DRIVERS: "auto"
636 EXTRA_OPTION: >
637 -D osmesa=classic
638 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000639 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100640
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700641meson-android:
642 extends: .meson-build
643 variables:
644 UNWIND: "disabled"
645 DRI_LOADERS: >
646 -D glx=disabled
647 -D gbm=disabled
648 -D egl=enabled
649 -D platforms=android
650 GALLIUM_DRIVERS: freedreno
651 VULKAN_DRIVERS: freedreno,intel,amd
652 EXTRA_OPTION: >
653 -D android-stub=true
654 -D werror=true
655 GALLIUM_ST: >
656 -D dri3=disabled
657 -D gallium-vdpau=disabled
658 -D gallium-xvmc=disabled
659 -D gallium-omx=disabled
660 -D gallium-va=disabled
661 -D gallium-xa=disabled
662 -D gallium-nine=false
663 -D gallium-opencl=disabled
664
Michel Dänzere5364462019-09-13 11:59:43 +0200665.meson-cross:
666 extends:
667 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100668 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200669 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700670 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200671 DRI_LOADERS: >
672 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700673 -D gbm=disabled
674 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100675 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200676 -D osmesa=none
677 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700678 -D dri3=disabled
679 -D gallium-vdpau=disabled
680 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200681 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700682 -D gallium-va=disabled
683 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200684 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100685 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200686
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200687.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100688 extends:
689 - .meson-cross
690 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200691 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200692 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200693 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100694 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200695 tags:
696 - aarch64
697
698meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100699 extends:
700 - .meson-arm
701 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200702 variables:
703 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200704 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800705 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700706 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200707 UPLOAD_FOR_LAVA: 1
708 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100709 script:
710 - .gitlab-ci/meson-build.sh
711 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200712
713meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200714 extends:
715 - .meson-arm
716 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200717 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100718 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800719 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700720 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200721 UPLOAD_FOR_LAVA: 1
722 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200723 script:
724 - .gitlab-ci/meson-build.sh
725 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200726
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100727meson-arm64-build-test:
728 extends:
729 - .meson-arm
730 - .ci-deqp-artifacts
731 variables:
732 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200733 EXTRA_OPTION: >
734 -Dtools=panfrost
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100735 script:
736 - .gitlab-ci/meson-build.sh
737
Michel Dänzera2cce702019-03-20 15:58:31 +0100738meson-clang:
739 extends: .meson-build
740 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700741 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100742 DRI_LOADERS: >
743 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100744 DRI_DRIVERS: "auto"
745 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100746 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100747 CC: "ccache clang-9"
748 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100749
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100750.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700751 extends:
752 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000753 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100754 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700755 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000756 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700757
Michel Dänzer82b30092019-05-03 18:19:25 +0200758scons-win64:
759 extends: .scons-build
760 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000761 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200762 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000763 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000764
Michel Dänzer68977152019-05-03 10:58:48 +0200765meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000766 extends: .meson-build
767 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700768 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000769 DRI_LOADERS: >
770 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700771 -D egl=disabled
772 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200773 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000774 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700775 -D dri3=disabled
776 -D gallium-vdpau=disabled
777 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000778 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700779 -D gallium-va=disabled
780 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000781 -D gallium-nine=false
782 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200783 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200784 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200785 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200786
787meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200788 extends:
789 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100790 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200791 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700792 UNWIND: "disabled"
Michel Dänzer8a199922019-09-06 17:04:47 +0200793 DRI_LOADERS: >
794 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700795 -D egl=disabled
796 -D gbm=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100797 -D platforms=[]
Michel Dänzer8a199922019-09-06 17:04:47 +0200798 GALLIUM_DRIVERS: "i915,r600"
799 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200800 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
801 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
802 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Michel Dänzer262e3882020-05-30 23:55:28 +0200803 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
804 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000805
Michel Dänzer82b30092019-05-03 18:19:25 +0200806meson-vulkan:
807 extends: .meson-build
808 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700809 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200810 DRI_LOADERS: >
811 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700812 -D gbm=disabled
813 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100814 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200815 -D osmesa=none
816 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700817 -D dri3=enabled
818 -D gallium-vdpau=disabled
819 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200820 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700821 -D gallium-va=disabled
822 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200823 -D gallium-nine=false
824 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200825 -D b_sanitize=undefined
826 -D c_args=-fno-sanitize-recover=all
827 -D cpp_args=-fno-sanitize-recover=all
828 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200829 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200830 EXTRA_OPTION: >
831 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100832 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800833 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200834
Eric Anholt11aa32a2019-07-11 12:58:28 -0700835meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200836 extends:
837 - .meson-cross
838 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700839 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100840 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100841 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100842 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700843 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700844 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800845 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700846
Michel Dänzer65610ec2020-01-30 18:21:15 +0100847meson-s390x:
848 extends:
849 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200850 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100851 tags:
852 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100853 variables:
854 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200855 EXTRA_OPTION: >
856 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100857 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100858
859meson-ppc64el:
860 extends:
861 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200862 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100863 variables:
864 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200865 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100866 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100867 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100868
Dylan Baker449f8312019-10-11 09:04:14 -0700869meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700870 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100871 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700872 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700873 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700874 DRI_DRIVERS: ""
875 GALLIUM_DRIVERS: "swrast"
876 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700877 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700878 -Dosmesa=gallium
879 --cross-file=.gitlab-ci/x86_64-w64-mingw32
880
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100881.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200882 extends:
883 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200884 # Cancel job if a newer commit is pushed to the same branch
885 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700886 variables:
887 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200888 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700889 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
890 - rm -rf install
891 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100892 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700893 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800894 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100895 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700896 paths:
897 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100898
899.test-gl:
900 extends:
901 - .test
902 variables:
903 TAG: *x86_test-gl
904 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200905 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100906 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100907 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700908
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100909.test-vk:
910 extends:
911 - .test
912 variables:
913 TAG: *x86_test-vk
914 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
915 needs:
916 - meson-testing
917 - x86_test-vk
918
Michel Dänzer576f7b62019-10-22 17:16:52 +0200919.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100920 extends:
921 - .test-gl
922 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100923 artifacts:
924 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100925 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100926 paths:
927 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200928 variables:
929 LIBGL_ALWAYS_SOFTWARE: 1
930 PIGLIT_NO_WINDOW: 1
931 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100932 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200933
934piglit-quick_gl:
935 extends: .piglit-test
936 variables:
937 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000938 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200939 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100940 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -0800941 -x egl_ext_device_
942 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800943 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200944 -x glx-multithread-clearbuffer
945 -x glx-multithread-shader-compile
946 -x max-texture-size
947 -x maxsize
948 PIGLIT_PROFILES: quick_gl
949
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100950piglit-glslparser:
951 extends: .piglit-test
952 variables:
953 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000954 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100955 PIGLIT_PROFILES: glslparser
956
957piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200958 extends: .piglit-test
959 variables:
960 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000961 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100962 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200963
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100964.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200965 variables:
966 DEQP_SKIPS: deqp-default-skips.txt
967 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100968 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200969
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100970.deqp-test-gl:
971 extends:
972 - .test-gl
973 - .deqp-test
974
975.deqp-test-vk:
976 extends:
977 - .test-vk
978 - .deqp-test
979 variables:
980 DEQP_VER: vk
981
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100982.fossilize-test:
983 extends: .test-vk
984 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100985 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +0200986 artifacts:
987 when: on_failure
988 name: "mesa_${CI_JOB_NAME}"
989 paths:
990 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100991
Michel Dänzer71436f92020-03-03 18:17:12 +0100992llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700993 variables:
994 DEQP_VER: gles2
Dave Airliee6b2af52019-12-03 15:23:45 +1000995 NIR_VALIDATE: 0
Eric Anholtfd24a952020-06-26 10:59:41 -0700996 # Don't use threads inside llvmpipe, we've already got all cores
997 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -0800998 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700999 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
1000 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -07001001 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001002 extends:
1003 - .deqp-test-gl
1004 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001005
Michel Dänzer71436f92020-03-03 18:17:12 +01001006softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001007 extends:
1008 - llvmpipe-gles2
1009 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001010 variables:
Eric Anholt553cd822019-08-09 10:32:40 -07001011 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -08001012 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -07001013 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001014 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -07001015
Michel Dänzer71436f92020-03-03 18:17:12 +01001016softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -07001017 variables:
1018 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +01001019 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -08001020
Michel Dänzer71436f92020-03-03 18:17:12 +01001021softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +02001022 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -08001023 variables:
1024 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +01001025 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001026
Eric Anholt86840612020-08-25 13:43:27 -07001027# Note that KHR-GL3* test sets include all tests from the previous
1028# version, so we only need to run one test list (unlike dEQP-GLES,
1029# where the test sets are separate).
1030softpipe-gl:
1031 variables:
1032 DEQP_VER: gl33
1033 extends:
1034 - softpipe-gles2
1035
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001036virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001037 variables:
1038 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001039 NIR_VALIDATE: 0
1040 DEQP_NO_SAVE_RESULTS: 1
Daniel Stonee513d8d2020-08-17 18:47:16 +01001041 DEQP_SKIPS: deqp-virgl-gl-skips.txt
Eric Anholtfd24a952020-06-26 10:59:41 -07001042 # Don't use threads inside llvmpipe, we've already got all cores
1043 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001044 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001045 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
1046 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001047 LIBGL_ALWAYS_SOFTWARE: "true"
1048 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001049 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001050 extends:
1051 - .deqp-test-gl
1052 - .virgl-rules
1053
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001054virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001055 variables:
1056 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001057 DEQP_RUNNER_OPTIONS: "--timeout 180"
1058 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001059
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001060virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +02001061 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001062 variables:
1063 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001064 MESA_GLES_VERSION_OVERRIDE: "3.1"
1065 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +10001066 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001067 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001068
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +02001069virgl-gl30-on-gl:
1070 variables:
1071 DEQP_VER: gl30
1072 extends: virgl-gles2-on-gl
1073
1074virgl-gl31-on-gl:
1075 variables:
1076 DEQP_VER: gl31
1077 extends: virgl-gles2-on-gl
1078
1079virgl-gl32-on-gl:
1080 variables:
1081 DEQP_VER: gl32
1082 extends: virgl-gles2-on-gl
1083
Eric Anholt8edaa842020-03-19 11:45:01 -07001084# Rules for tests that should not be present in MRs or the main
1085# project's pipeline (don't block marge or report red on
1086# mesa/mesamaster) but should be present on pipelines in personal
1087# branches (so you can opt in to running the flaky test when you want
1088# to).
1089.test-manual:
1090 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001091 - *ignore_scheduled_pipelines
Michel Dänzer22a7c252020-09-08 17:52:24 +02001092 - if: *is-forked-branch
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001093 changes:
1094 *all_paths
1095 when: manual
1096 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001097
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001098virgl-gles2-on-gles:
1099 variables:
1100 VIRGL_HOST_API: GLES
1101 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1102 extends:
1103 - virgl-gles2-on-gl
1104 - .test-manual
1105
1106virgl-gles3-on-gles:
1107 variables:
1108 VIRGL_HOST_API: GLES
1109 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1110 extends:
1111 - virgl-gles3-on-gl
1112 - .test-manual
1113
1114virgl-gles31-on-gles:
1115 variables:
1116 VIRGL_HOST_API: GLES
1117 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1118 extends:
1119 - virgl-gles31-on-gl
1120 - .test-manual
1121
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001122arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001123 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001124 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001125 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001126 BM_KERNEL: /lava-files/cheza-kernel
1127 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 -07001128 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001129 DEQP_FLAKES: deqp-freedreno-a630-flakes.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001130 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001131 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001132 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001133 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001134 - google-freedreno-cheza
1135 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001136 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001137
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001138arm64_a630_gles31:
1139 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001140 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001141 DEQP_VER: gles31
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001142 # gles31 is about 12 minutes with validation enabled.
1143 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001144
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001145arm64_a630_gles3:
1146 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001147 variables:
1148 DEQP_VER: gles3
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001149 # gles3 is about 15 minutes with validation enabled.
1150 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001151
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001152# We almost always manage to lower UBOs back to constant uploads in
1153# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001154arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001155 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001156 variables:
1157 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001158 IR3_SHADER_DEBUG: nouboopt
1159 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001160
1161# The driver does some guessing as to whether to render using gmem
1162# or bypass, and some GLES3.1 features interact with either one.
1163# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001164arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001165 extends: arm64_a630_gles31
1166 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001167 CI_NODE_INDEX: 1
1168 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001169 FD_MESA_DEBUG: nogmem
1170 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1171
Rob Clarke5169b12020-07-16 14:20:22 -07001172arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001173 extends:
1174 - arm64_a630_gles2
1175 variables:
1176 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1177 DEVICE_NAME: "freedreno-a630"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001178 DRIVER_NAME: "freedreno"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001179 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001180 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001181 # This lets us run several more traces which don't use any features we're
1182 # missing.
1183 MESA_GLSL_VERSION_OVERRIDE: "460"
1184 MESA_GL_VERSION_OVERRIDE: "4.6"
Alexandros Frantzisf4210df2020-09-04 14:20:39 +03001185 artifacts:
1186 reports:
1187 junit: results/junit.xml
Eric Anholtb88c46f2020-06-08 14:51:59 -07001188
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001189# Along with checking gmem path, check that we don't get obvious nir
1190# validation failures (though it's too expensive to have it on for the
1191# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001192arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001193 extends: arm64_a630_gles31
1194 variables:
1195 CI_NODE_INDEX: 1
1196 CI_NODE_TOTAL: 5
1197 FD_MESA_DEBUG: nobypass
1198 NIR_VALIDATE: 1
Eric Anholt5082ac02020-04-17 12:02:37 -07001199
Eric Anholt5c0d34c2020-08-27 09:28:53 -07001200arm64_a630_gl:
1201 extends: arm64_a630_gles2
1202 variables:
1203 DEQP_VER: gl30
1204
Jonathan Marekbe33d582020-07-14 10:58:56 -04001205arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001206 extends: arm64_a630_gles2
1207 variables:
1208 DEQP_VER: vk
1209 CI_NODE_INDEX: 1
1210 CI_NODE_TOTAL: 50
1211 VK_DRIVER: freedreno
1212 # Force binning in the main run, which makes sure we render at
1213 # least 2 bins. This is the path that impacts the most different
1214 # features. However, we end up with flaky results in
1215 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1216 TU_DEBUG: forcebin
1217
1218# Do a separate sysmem pass over the testcases that really affect sysmem
1219# rendering. This is currently very flaky, leave it as an option for devs
1220# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001221arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001222 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001223 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001224 variables:
1225 CI_NODE_INDEX: 1
1226 CI_NODE_TOTAL: 10
1227 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1228 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1229 TU_DEBUG: sysmem
1230
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001231.baremetal-test:
1232 extends:
1233 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001234 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001235 # Cancel job if a newer commit is pushed to the same branch
1236 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001237 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001238 artifacts:
1239 when: always
1240 name: "mesa_${CI_JOB_NAME}"
1241 paths:
1242 - results/
1243 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001244
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001245arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001246 extends:
1247 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001248 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001249 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001250 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001251 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001252 BM_DTB: /lava-files/apq8016-sbc.dtb
1253 BM_ROOTFS: /lava-files/rootfs-arm64
1254 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001255 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001256 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001257 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001258 DEQP_SKIPS: deqp-default-skips.txt
1259 DEQP_FLAKES: deqp-freedreno-a307-flakes.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001260 DEQP_VER: gles2
1261 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001262 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001263 # Since we can't get artifacts back yet, skip making them.
1264 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001265 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001266 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001267 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001268 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001269 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001270 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001271 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001272 - google-freedreno-db410c
1273
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001274# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001275arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001276 extends:
1277 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001278 variables:
1279 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001280 DEQP_PARALLEL: 1
1281 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001282 CI_NODE_TOTAL: 25
1283 NIR_VALIDATE: 0
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001284
Eric Anholtae442c32020-05-15 16:15:07 -07001285# Fractional runs with debug options. Note that since we're not
1286# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1287arm64_a306_gles3_options:
1288 extends: arm64_a306_gles2
1289 variables:
1290 DEQP_VER: gles3
1291 script:
1292 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001293 - 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 -07001294
Eric Anholt4bc15e72020-03-03 14:38:09 -08001295arm64_a530_gles2:
1296 extends:
1297 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001298 variables:
1299 BM_KERNEL: /lava-files/db820c-kernel
1300 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001301 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1302 # current upstream kernel.
1303 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001304 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001305 DEQP_FLAKES: deqp-freedreno-a530-flakes.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001306 DEQP_EXPECTED_RENDERER: FD530
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001307 NIR_VALIDATE: 0
Eric Anholt4bc15e72020-03-03 14:38:09 -08001308 tags:
1309 - google-freedreno-db820c
1310
1311arm64_a530_gles3:
1312 extends:
1313 - arm64_a530_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001314 variables:
1315 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001316 DEQP_PARALLEL: 1
1317 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001318 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001319
Eric Anholt6c011522020-04-22 12:08:06 -07001320arm64_a530_gles31:
1321 extends:
1322 - arm64_a530_gles3
1323 variables:
1324 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001325 CI_NODE_INDEX: 1
1326 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001327
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001328# RADV CI
1329.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001330 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001331 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001332 variables:
1333 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001334 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001335
Eric Anholt8edaa842020-03-19 11:45:01 -07001336# Can only be triggered manually on personal branches because RADV is the only
1337# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001338radv_polaris10_vkcts:
1339 extends:
1340 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001341 - .test-radv
1342 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001343 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001344 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1345 tags:
1346 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001347
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001348radv-fossils:
1349 extends:
1350 - .fossilize-test
1351 - .test-radv
1352 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001353 # Pitcairn (GFX6)
1354 - export RADV_FORCE_FAMILY="pitcairn"
1355 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001356 # Bonaire (GFX7)
1357 - export RADV_FORCE_FAMILY="bonaire"
1358 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001359 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001360 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001361 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001362 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001363 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001364 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001365 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001366 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001367 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001368 # Sienna Cichlid (GFX10)
1369 - export RADV_FORCE_FAMILY="gfx1030"
1370 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001371
Andres Gomez0ac731b12020-02-20 18:26:30 +02001372# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001373.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001374 cache:
1375 key: ${CI_JOB_NAME}
1376 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001377 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001378 variables:
1379 TRACIE_UPLOAD_TO_MINIO: 1
Alexandros Frantzis7e82e252020-09-04 12:44:53 +03001380 artifacts:
1381 reports:
1382 junit: results/junit.xml
Andres Gomez0ac731b12020-02-20 18:26:30 +02001383
1384.traces-test-gl:
1385 extends:
1386 - .test-gl
1387 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001388 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001389 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001390
1391.traces-test-vk:
1392 extends:
1393 - .test-vk
1394 - .traces-test
1395 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001396 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001397
1398llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001399 extends:
1400 - .traces-test-gl
1401 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001402 variables:
1403 LIBGL_ALWAYS_SOFTWARE: "true"
1404 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001405 DEVICE_NAME: "gl-vmware-llvmpipe"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001406 DRIVER_NAME: "llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001407
1408radv-polaris10-traces:
1409 extends:
1410 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001411 - .test-radv
1412 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001413 variables:
1414 DEVICE_NAME: "vk-amd-polaris10"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001415 DRIVER_NAME: "radv"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001416 tags:
1417 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001418
Andres Gomezb6b100c2020-04-24 19:32:42 +03001419radv-raven-traces:
1420 extends:
1421 - .traces-test-vk
1422 - .test-radv
1423 - .test-manual
1424 variables:
1425 DEVICE_NAME: "vk-amd-raven"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001426 DRIVER_NAME: "radv"
Andres Gomezb6b100c2020-04-24 19:32:42 +03001427 tags:
1428 - raven
1429
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001430virgl-traces:
1431 extends:
1432 - .traces-test-gl
1433 - .virgl-rules
1434 variables:
1435 LIBGL_ALWAYS_SOFTWARE: "true"
1436 GALLIUM_DRIVER: "virpipe"
1437 DEVICE_NAME: "gl-virgl"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001438 DRIVER_NAME: "virgl"
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001439 MESA_GLES_VERSION_OVERRIDE: "3.1"
1440 MESA_GLSL_VERSION_OVERRIDE: "310"