blob: 4b9877cdcf3250a67f75f5ea61b07dd922a899af [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:
Michel Dänzer9d1d3a82020-08-06 17:10:08 +020019 - container
Michel Dänzerc2366f02020-05-16 17:17:23 +020020 - container-2
Michel Dänzer4c41d192020-08-06 17:37:33 +020021 - sanity
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020022 - git-archive
Michel Dänzer3cdc0d52020-07-01 17:37:49 +020023 - deploy
Michel Dänzercc9493f2020-02-27 18:27:56 +010024 - meson-x86_64
25 - scons
26 - meson-misc
27 - llvmpipe
28 - softpipe
29 - freedreno
30 - panfrost
Samuel Pitoiset48e92032020-03-06 08:39:25 +010031 - radv
32 - lima
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +020033 - virgl
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020034 - radeonsi
Michel Dänzer8775b742020-01-13 09:45:57 +010035 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000036
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020037# Generic rule to not run the job during scheduled pipelines
38# ----------------------------------------------------------
39.scheduled_pipelines-rules:
40 rules: &ignore_scheduled_pipelines
Michel Dänzerc3ae82b2020-09-08 17:44:40 +020041 if: &is-scheduled-pipeline '$CI_PIPELINE_SOURCE == "schedule"'
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020042 when: never
43
Michel Dänzerac56d662020-09-08 12:20:39 +020044# YAML anchors for rule conditions
45# --------------------------------
46.rules-anchors:
47 rules:
Michel Dänzer208876b2020-09-08 18:00:21 +020048 # For Marge Bot
49 - if: &is-for-marge '$GITLAB_USER_LOGIN == "marge-bot"'
50 when: never
Michel Dänzer22a7c252020-09-08 17:52:24 +020051 # Forked project branch
Michel Dänzer8cb450f2020-09-08 18:02:58 +020052 - 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 +020053 when: manual
Michel Dänzer24f53292020-09-08 17:30:49 +020054 # Forked project branch / pre-merge pipeline
Michel Dänzer8cb450f2020-09-08 18:02:58 +020055 - 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 +020056 when: manual
Michel Dänzerac56d662020-09-08 12:20:39 +020057 # Pipeline runs for the master branch of the main project
Michel Dänzerefec5762020-09-02 18:35:32 +020058 - 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 +020059 when: always
Michel Dänzerb47f1bb2020-09-08 17:47:18 +020060 # Post-merge pipeline
61 - if: &is-post-merge '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
62 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +020063 # Post-merge pipeline, not for Marge Bot
Michel Dänzer8cb450f2020-09-08 18:02:58 +020064 - 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 +020065 when: on_success
Michel Dänzer0fcb8b32020-09-08 17:58:32 +020066 # Pre-merge pipeline
67 - if: &is-pre-merge '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
68 when: on_success
Michel Dänzerf79ae942020-09-08 12:31:08 +020069 # Pre-merge pipeline for Marge Bot
70 - if: &is-pre-merge-for-marge '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
71 when: on_success
Michel Dänzerac56d662020-09-08 12:20:39 +020072
73
Erik Faye-Lund87747072020-06-22 11:10:29 +020074.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020075 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020076 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020077 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020078 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020079 - pip3 install sphinx sphinx_rtd_theme
80 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020081
82pages:
83 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020084 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020085 artifacts:
86 paths:
87 - public
Michel Dänzer7b09d502020-08-06 17:12:11 +020088 needs: []
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020089 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020090 - *ignore_scheduled_pipelines
Michel Dänzerac56d662020-09-08 12:20:39 +020091 - if: *is-main-master
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020092 changes: &docs-or-ci
93 - docs/**/*
94 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020095 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020096 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000097
Erik Faye-Lund87747072020-06-22 11:10:29 +020098test-docs:
99 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +0200100 # Cancel job if a newer commit is pushed to the same branch
101 interruptible: true
Michel Dänzer9d1d3a82020-08-06 17:10:08 +0200102 stage: deploy
103 needs: []
Michel Dänzer1c612e82020-06-22 11:13:05 +0200104 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200105 - *ignore_scheduled_pipelines
Michel Dänzer0836e902020-09-02 18:39:52 +0200106 - if: *is-main-master
107 changes: *docs-or-ci
108 when: never
Michel Dänzerf79ae942020-09-08 12:31:08 +0200109 - if: *is-pre-merge-for-marge
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +0200110 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200111 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +0200112 - if: *is-post-merge-not-for-marge
Michel Dänzerf13f32f2020-08-31 18:46:37 +0200113 changes: *docs-or-ci
114 when: on_success
Michel Dänzer24f53292020-09-08 17:30:49 +0200115 - if: *is-forked-branch-or-pre-merge
Michel Dänzer615f1c82020-09-01 11:44:54 +0200116 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200117 when: manual
118 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +0200119
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000120# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +0200121.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +0200122 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200123 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +0200124 # If any files affecting the pipeline are changed, build/test jobs run
125 # automatically once all dependency jobs have passed
126 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +0100127 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +0200128 - bin/git_sha1_gen.py
129 - bin/install_megadrivers.py
130 - bin/meson_get_version.py
131 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +0100132 # GitLab CI
133 - .gitlab-ci.yml
134 - .gitlab-ci/**/*
135 # Meson
136 - meson*
137 - build-support/**/*
138 - subprojects/**/*
139 # SCons
140 - SConstruct
141 - scons/**/*
142 - common.py
143 # Source code
144 - include/**/*
145 - src/**/*
146 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200147 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100148 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100149 retry:
150 max: 2
151 when:
152 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000153
Michel Dänzer8775b742020-01-13 09:45:57 +0100154success:
155 stage: success
156 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200157 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200158 - *ignore_scheduled_pipelines
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200159 - if: *is-post-merge
Michel Dänzer6cba4682020-06-22 11:16:17 +0200160 when: never
Michel Dänzer208876b2020-09-08 18:00:21 +0200161 - if: *is-for-marge
Michel Dänzer6cba4682020-06-22 11:16:17 +0200162 changes: *docs-or-ci
163 when: never
164 - changes: *all_paths
165 when: never
Michel Dänzer0fcb8b32020-09-08 17:58:32 +0200166 - if: *is-pre-merge
Michel Dänzera6c4db92020-08-28 17:08:57 +0200167 when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100168 variables:
169 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100170 script:
171 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
172
173
Michel Dänzere426f402019-09-06 17:35:52 +0200174.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700175 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100176 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700177 when: always
178 untracked: false
179 paths:
180 # Watch out! Artifacts are relative to the build dir.
181 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
182 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000183
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100184# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100185#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800186# 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 +0100187# image doesn't exist yet, the container stage job generates it.
188#
189# In order to generate a new image, one should generally change the tag.
190# While removing the image from the registry would also work, that's not
191# recommended except for ephemeral images during development: Replacing
192# an image after a significant amount of time might pull in newer
193# versions of gcc/clang or other packages, which might break the build
194# with older commits using the same tag.
195#
196# After merging a change resulting in generating a new image to the
197# main repository, it's recommended to remove the image from the source
198# repository's container registry, so that the image from the main
199# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200200
Eric Engestrom81b98e92019-10-14 23:04:14 +0100201.container:
Michel Dänzer9d1d3a82020-08-06 17:10:08 +0200202 stage: container
Eric Engestrom81b98e92019-10-14 23:04:14 +0100203 extends:
204 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200205 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200206 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200207 # Run pipeline by default in the main project if any CI pipeline
208 # configuration files were changed, to ensure docker images are up to date
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200209 - if: *is-post-merge
Michel Dänzer42fe6002020-04-03 12:50:11 +0200210 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200211 - .gitlab-ci.yml
212 - .gitlab-ci/**/*
213 when: on_success
214 # Run pipeline by default if it was triggered by Marge Bot, is for a
215 # merge request, and any files affecting the pipeline were changed
Michel Dänzerf79ae942020-09-08 12:31:08 +0200216 - if: *is-pre-merge-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200217 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200218 *all_paths
219 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200220 # Run pipeline by default in the main project if it was not triggered by
221 # Marge Bot, and any files affecting the pipeline were changed
Michel Dänzera33026e2020-09-08 12:36:11 +0200222 - if: *is-post-merge-not-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200223 changes:
224 *all_paths
225 when: on_success
226 # Allow triggering jobs manually in other cases if any files affecting the
227 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200228 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200229 *all_paths
230 when: manual
231 # Otherwise, container jobs won't run
232 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100233 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800234 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100235 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700236 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 +0100237 # no need to pull the whole repo to build the container image
238 GIT_STRATEGY: none
239
Michel Dänzera85da8e2020-05-30 15:53:41 +0200240# Debian 10 based x86 build image base
241x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200242 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100243 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100244 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100245 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000246 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-10-06-clang10-2"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200247
248.use-x86_build-base:
249 extends:
250 - x86_build-base
251 - .ci-run-policy
252 stage: container-2
253 variables:
254 BASE_TAG: *x86_build-base
255 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
256 needs:
257 - x86_build-base
258
259# Debian 10 based x86 main build image
260x86_build:
261 extends:
262 - .use-x86_build-base
263 variables:
Dave Airlieb0df97b2020-10-09 12:07:31 +1000264 FDO_DISTRIBUTION_TAG: &x86_build "2020-10-09-spvtools-1"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000265
Michel Dänzer3a48f452019-11-13 17:43:41 +0100266.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100267 variables:
268 TAG: *x86_build
269 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200270 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100271 - x86_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200272 - check mr
Michel Dänzereb86cba2019-10-10 15:27:17 +0200273
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200274# Debian 10 based i386 cross-build image
275i386_build:
276 extends:
277 - .use-x86_build-base
278 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000279 FDO_DISTRIBUTION_TAG: &i386_build "2020-10-06-clang10-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200280
281.use-i386_build:
282 variables:
283 TAG: *i386_build
284 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
285 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200286 - i386_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200287 - check mr
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200288
289# Debian 10 based ppc64el cross-build image
290ppc64el_build:
291 extends:
292 - .use-x86_build-base
293 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000294 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-10-06-clang10-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200295
296.use-ppc64el_build:
297 variables:
298 TAG: *ppc64el_build
299 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
300 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200301 - ppc64el_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200302 - check mr
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200303
304# Debian 10 based s390x cross-build image
305s390x_build:
306 extends:
307 - .use-x86_build-base
308 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000309 FDO_DISTRIBUTION_TAG: &s390x_build "2020-10-06-clang10-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200310
311.use-s390x_build:
312 variables:
313 TAG: *s390x_build
314 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
315 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200316 - s390x_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200317 - check mr
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200318
Eric Anholt0767af32020-09-09 16:37:54 -0700319# Android NDK cross-build image
320android_build:
321 extends:
322 - .use-x86_build-base
323 variables:
324 FDO_DISTRIBUTION_TAG: &android_build "2020-10-05-shrink"
325
326.use-android_build:
327 variables:
328 TAG: *android_build
329 image: "$CI_REGISTRY_IMAGE/debian/android_build:$TAG"
330 needs:
331 - android_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200332 - check mr
Eric Anholt0767af32020-09-09 16:37:54 -0700333
Michel Dänzerc2366f02020-05-16 17:17:23 +0200334# Debian 10 based x86 test image base
335x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200336 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100337 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000338 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-10-06-clang10-2"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200339
340.use-x86_test-base:
341 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200342 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200343 - .ci-run-policy
344 stage: container-2
345 variables:
346 BASE_TAG: *x86_test-base
347 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
348 needs:
349 - x86_test-base
350
351# Debian 10 based x86 test image for GL
352x86_test-gl:
353 extends: .use-x86_test-base
354 variables:
Christian Gmeiner41be85a2020-10-30 12:12:14 +0100355 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-10-30-python3-modules-1"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100356
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100357# Debian 10 based x86 test image for VK
358x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200359 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100360 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000361 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-10-06-clang10-2"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100362
Michel Dänzerc6c76522019-11-11 18:13:28 +0100363# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100364x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200365 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200366 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700367 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800368 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200369
Michel Dänzer3a48f452019-11-13 17:43:41 +0100370.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100371 variables:
372 TAG: *x86_build_old
373 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200374 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100375 - x86_build_old
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200376 - check mr
Michel Dänzer88319f22019-09-18 16:17:01 +0200377
Michel Dänzerc6c76522019-11-11 18:13:28 +0100378# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100379arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200380 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100381 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100382 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700383 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200384 FDO_DISTRIBUTION_TAG: &arm_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000385
Michel Dänzerc6c76522019-11-11 18:13:28 +0100386.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100387 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100388 TAG: *arm_build
389 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
390 needs:
391 - arm_build
392
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200393# Debian 10 based x86 baremetal image base
394arm_test-base:
395 extends:
396 - .fdo.container-build@debian
397 - .container
398 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000399 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-10-06-clang10-2"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200400
401.use-arm_test-base:
402 extends:
403 - arm_test-base
404 - .ci-run-policy
405 stage: container-2
406 variables:
407 BASE_TAG: *arm_test-base
408 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
409 needs:
410 - arm_test-base
411
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200412# x86 image with ARM64 rootfs for baremetal testing.
413arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200414 extends:
415 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700416 variables:
Rob Clark8abe3bb2020-09-02 15:43:20 -0700417 FDO_DISTRIBUTION_TAG: &arm64_test "2020-09-28-deqp-surfaceless-fix"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700418
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200419.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700420 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200421 TAG: *arm64_test
422 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700423 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200424 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700425
Daniel Stone07885cb2020-03-24 11:11:36 +0000426# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700427#
Daniel Stone07885cb2020-03-24 11:11:36 +0000428# Unlike the above Linux-based builds - including MinGW/SCons builds which
429# cross-compile for Windows - which use the freedesktop ci-templates, we
430# cannot use the same scheme here. As Windows lacks support for
431# Docker-in-Docker, and Podman does not run natively on Windows, we have
432# to open-code much of the same ourselves.
433#
434# This is achieved by first running in a native Windows shell instance
435# (host PowerShell) in the container stage to build and push the image,
436# then in the build stage by executing inside Docker.
437
438.windows-docker-vs2019:
439 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100440 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000441 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
442 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
443
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100444.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000445 extends:
446 - .container
447 - .windows-docker-vs2019
Michel Dänzer9d1d3a82020-08-06 17:10:08 +0200448 stage: container
Daniel Stone07885cb2020-03-24 11:11:36 +0000449 variables:
450 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100451 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000452 tags:
453 - windows
454 - shell
455 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100456 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000457 script:
458 - .\.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 -0700459
Daniel Stone07885cb2020-03-24 11:11:36 +0000460.use-windows_build_vs2019:
461 extends: .windows-docker-vs2019
462 image: "$WINDOWS_IMAGE"
463 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100464 - windows_build_vs2019
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200465 - check mr
Eric Engestrom81b98e92019-10-14 23:04:14 +0100466
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200467git_archive:
468 extends: .fdo.container-build@alpine
Michel Dänzer9d1d3a82020-08-06 17:10:08 +0200469 stage: container
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200470 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200471 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200472 when: always
Michel Dänzer4c41d192020-08-06 17:37:33 +0200473 - if: *is-pre-merge
474 when: on_success
Michel Dänzer6b874eb2020-10-26 18:05:49 +0100475 - changes: *all_paths
476 when: on_success
Michel Dänzer4c41d192020-08-06 17:37:33 +0200477 - if: *is-forked-branch
478 when: manual
479 # Other cases default to never
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200480 variables:
481 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200482 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200483 # no need to pull the whole repo to build the container image
484 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200485 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200486 FDO_DISTRIBUTION_PACKAGES: git py3-pip
487
Michel Dänzer4c41d192020-08-06 17:37:33 +0200488.use-git_archive:
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200489 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200490 variables:
491 FDO_DISTRIBUTION_TAG: *git-archive-tag
492 FDO_REPO_SUFFIX: *git-archive-suffix
493 needs:
494 - git_archive
495
Michel Dänzer4c41d192020-08-06 17:37:33 +0200496
497# Git archive
498
499make git archive:
500 extends: .use-git_archive
501 stage: git-archive
502 rules:
503 - if: *is-scheduled-pipeline
504 when: on_success
505 # ensure we are running on packet
506 tags:
507 - packet.net
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200508 script:
509 # compress the current folder
510 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
511
512 # login with the JWT token
513 - ci-fairy minio login $CI_JOB_JWT
514 - 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
515
516
Michel Dänzer4c41d192020-08-06 17:37:33 +0200517# Sanity checks of MR settings and commit logs
518.sanity-check:
519 extends: .use-git_archive
520 stage: sanity
521 artifacts:
522 when: on_failure
523 reports:
524 junit: check-*.xml
525
526check mr:
527 extends: .sanity-check
528 rules:
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200529 - *ignore_scheduled_pipelines
Michel Dänzer4c41d192020-08-06 17:37:33 +0200530 - if: *is-pre-merge
531 when: on_success
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200532 - changes: *all_paths
533 when: on_success
Michel Dänzer4c41d192020-08-06 17:37:33 +0200534 # Other cases default to never
535 variables:
536 GIT_STRATEGY: none
537 script:
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200538 # Only run checks in pre-merge pipelines for MRs
539 - if test "x$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME" != "x$CI_COMMIT_REF_NAME"; then exit 0; fi
Michel Dänzer4c41d192020-08-06 17:37:33 +0200540 - ci-fairy check-merge-request --require-allow-collaboration --junit-xml=check-merge-request.xml
541
Rhys Perry542feb92020-10-22 12:05:34 +0100542.check commits:
Michel Dänzer4c41d192020-08-06 17:37:33 +0200543 extends: .sanity-check
544 rules:
545 - if: *is-pre-merge
546 when: on_success
547 - if: *is-forked-branch
548 when: manual
549 # Other cases default to never
550 script:
551 - ci-fairy check-commits --junit-xml=check-commits.xml
552
553
Eric Engestrom46d23c02019-01-20 11:26:53 +0000554# BUILD
555
Dylan Baker06e46472019-10-23 14:21:31 -0700556# Shared between windows and Linux
557.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100558 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200559 # Cancel job if a newer commit is pushed to the same branch
560 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000561 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100562 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700563 when: always
564 paths:
565 - _build/meson-logs/*.txt
566 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200567 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700568 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700569
570# Just Linux
571.build-linux:
572 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200573 variables:
574 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100575 CCACHE_COMPRESS: "true"
576 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000577 # Use ccache transparently, and print stats before/after
578 before_script:
579 - export PATH="/usr/lib/ccache:$PATH"
580 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100581 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000582 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000583 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000584
Dylan Baker19851c92019-10-23 14:36:19 -0700585.build-windows:
586 extends: .build-common
587 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000588 - windows
589 - docker
590 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100591 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700592 cache:
593 key: ${CI_JOB_NAME}
594 paths:
595 - subprojects/packagecache
596
Eric Engestrom46d23c02019-01-20 11:26:53 +0000597.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100598 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700599 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100600 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100601 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100602 variables:
Dave Airlie137d7d22020-10-06 10:49:00 +1000603 LLVM_VERSION: 10
Eric Engestrom23b485c2019-02-12 16:59:27 +0000604 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200605 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000606
Eric Engestrom06b245b2019-01-23 15:46:10 +0000607.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100608 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700609 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100610 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100611 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000612 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700613 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000614
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100615meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200616 extends:
617 - .meson-build
618 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200619 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700620 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200621 DRI_LOADERS: >
622 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700623 -D gbm=enabled
624 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100625 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100626 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700627 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200628 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100629 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100630 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800631 EXTRA_OPTION: >
632 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200633 UPLOAD_FOR_LAVA: 1
634 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100635 script:
636 - .gitlab-ci/meson-build.sh
637 - .gitlab-ci/prepare-artifacts.sh
638
Dave Airlie0a172dc2020-09-29 08:40:13 +1000639meson-clover-testing:
640 extends:
641 - .meson-build
642 - .ci-deqp-artifacts
643 variables:
644 UNWIND: "enabled"
645 LLVM_VERSION: 10
646 DRI_LOADERS: >
647 -D glx=disabled
648 -D egl=disabled
649 -D gbm=disabled
650 GALLIUM_ST: >
651 -D gallium-opencl=icd
652 -D opencl-spirv=true
653 GALLIUM_DRIVERS: "swrast"
654 BUILDTYPE: "debugoptimized"
655 script:
656 - .gitlab-ci/meson-build.sh
657 - .gitlab-ci/prepare-artifacts.sh
658
Michel Dänzerc56f0912020-03-12 12:29:40 +0100659meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100660 extends: .meson-build
661 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700662 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100663 DRI_LOADERS: >
664 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700665 -D gbm=enabled
666 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100667 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200668 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700669 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200670 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700671 -D gallium-vdpau=enabled
672 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200673 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700674 -D gallium-va=enabled
675 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200676 -D gallium-nine=true
677 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100678 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 +1000679 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200680 EXTRA_OPTION: >
681 -D osmesa=gallium
682 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000683 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200684 script:
685 - .gitlab-ci/meson-build.sh
686 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700687 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200688
Eric Anholt373e25e2020-08-24 10:15:35 -0700689# Test a release build with -Werror so new warnings don't sneak in.
690meson-release:
691 extends: .meson-build
692 variables:
693 UNWIND: "enabled"
694 DRI_LOADERS: >
695 -D glx=dri
696 -D gbm=enabled
697 -D egl=enabled
698 -D platforms=x11,wayland
699 GALLIUM_ST: >
700 -D dri3=enabled
701 -D gallium-extra-hud=true
702 -D gallium-vdpau=enabled
703 -D gallium-xvmc=disabled
704 -D gallium-omx=disabled
705 -D gallium-va=enabled
706 -D gallium-xa=enabled
707 -D gallium-nine=false
708 -D gallium-opencl=disabled
709 -D llvm=false
710 GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
711 BUILDTYPE: "release"
712 EXTRA_OPTION: >
713 -D osmesa=none
714 -D tools=all
715 -D werror=true
716 script:
717 - .gitlab-ci/meson-build.sh
718
Michel Dänzerc56f0912020-03-12 12:29:40 +0100719meson-classic:
720 extends: .meson-build
721 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700722 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100723 DRI_LOADERS: >
724 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700725 -D gbm=enabled
726 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100727 -D platforms=x11,wayland,drm,surfaceless
728 DRI_DRIVERS: "auto"
729 EXTRA_OPTION: >
730 -D osmesa=classic
731 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000732 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100733
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700734meson-android:
Eric Anholt0767af32020-09-09 16:37:54 -0700735 extends:
736 - .meson-cross
737 - .use-android_build
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700738 variables:
739 UNWIND: "disabled"
740 DRI_LOADERS: >
741 -D glx=disabled
742 -D gbm=disabled
743 -D egl=enabled
744 -D platforms=android
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700745 EXTRA_OPTION: >
746 -D android-stub=true
Eric Anholt0767af32020-09-09 16:37:54 -0700747 -D llvm=disabled
Eric Anholtab57df22020-09-24 16:44:50 -0700748 -D platform-sdk-version=26
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700749 GALLIUM_ST: >
750 -D dri3=disabled
751 -D gallium-vdpau=disabled
752 -D gallium-xvmc=disabled
753 -D gallium-omx=disabled
754 -D gallium-va=disabled
755 -D gallium-xa=disabled
756 -D gallium-nine=false
757 -D gallium-opencl=disabled
Eric Anholt0767af32020-09-09 16:37:54 -0700758 LLVM_VERSION: ""
759 script:
760 # arm64 build: Can't build v3d/vc4 because they require expat for v3d_decode.
761 - PKG_CONFIG_PATH=/usr/local/lib/aarch64-linux-android/pkgconfig/:/android-ndk-r21d/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/pkgconfig/ CROSS=aarch64-linux-android GALLIUM_DRIVERS=etnaviv,freedreno,lima,panfrost VULKAN_DRIVERS=freedreno .gitlab-ci/meson-build.sh
762 # x86_64 build:
763 # Can't do Intel because gen_decoder.c currently requires libexpat, which
764 # is not a dependency that AOSP wants to accept. Can't do Radeon because
765 # it requires LLVM, which we don't have an Android build of.
766 # - PKG_CONFIG_PATH=/usr/local/lib/x86_64-linux-android/pkgconfig/ CROSS=x86_64-linux-android GALLIUM_DRIVERS=iris VULKAN_DRIVERS=intel .gitlab-ci/meson-build.sh
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700767
Michel Dänzere5364462019-09-13 11:59:43 +0200768.meson-cross:
769 extends:
770 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100771 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200772 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700773 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200774 DRI_LOADERS: >
775 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700776 -D gbm=disabled
777 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100778 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200779 -D osmesa=none
780 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700781 -D dri3=disabled
782 -D gallium-vdpau=disabled
783 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200784 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700785 -D gallium-va=disabled
786 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200787 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100788 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200789
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200790.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100791 extends:
792 - .meson-cross
793 - .use-arm_build
Michel Dänzerb92eadb2020-10-22 17:58:35 +0200794 needs:
795 - arm_build
796 - check mr
Michel Dänzere5364462019-09-13 11:59:43 +0200797 variables:
Alejandro Piñeiroe4af07b2020-10-01 12:08:17 +0200798 VULKAN_DRIVERS: freedreno,broadcom
Michel Dänzer793f6b32019-10-08 19:48:41 +0200799 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100800 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200801 tags:
802 - aarch64
803
804meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100805 extends:
806 - .meson-arm
807 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200808 variables:
809 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200810 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800811 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700812 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200813 UPLOAD_FOR_LAVA: 1
814 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100815 script:
816 - .gitlab-ci/meson-build.sh
817 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200818
819meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200820 extends:
821 - .meson-arm
822 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200823 variables:
Alejandro Piñeiroe4af07b2020-10-01 12:08:17 +0200824 VULKAN_DRIVERS: "freedreno,broadcom"
Eric Anholt25741582020-02-24 10:31:33 -0800825 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700826 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200827 UPLOAD_FOR_LAVA: 1
828 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200829 script:
830 - .gitlab-ci/meson-build.sh
831 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200832
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100833meson-arm64-build-test:
834 extends:
835 - .meson-arm
836 - .ci-deqp-artifacts
837 variables:
838 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200839 EXTRA_OPTION: >
840 -Dtools=panfrost
Eric Anholt22a63962020-10-19 11:54:24 -0700841 -D werror=true
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100842 script:
843 - .gitlab-ci/meson-build.sh
844
Michel Dänzera2cce702019-03-20 15:58:31 +0100845meson-clang:
846 extends: .meson-build
847 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700848 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100849 DRI_LOADERS: >
850 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100851 DRI_DRIVERS: "auto"
Boris Brezillonf7583bd2020-09-22 12:00:18 +0200852 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink,radeonsi,tegra"
Alejandro Piñeiroe4af07b2020-10-01 12:08:17 +0200853 VULKAN_DRIVERS: intel,amd,freedreno,broadcom
Dave Airlie137d7d22020-10-06 10:49:00 +1000854 CC: "ccache clang-10"
855 CXX: "ccache clang++-10"
Michel Dänzera2cce702019-03-20 15:58:31 +0100856
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100857.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700858 extends:
859 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000860 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100861 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700862 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000863 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700864
Michel Dänzer82b30092019-05-03 18:19:25 +0200865scons-win64:
866 extends: .scons-build
867 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000868 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200869 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000870 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000871
Michel Dänzer68977152019-05-03 10:58:48 +0200872meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000873 extends: .meson-build
874 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700875 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000876 DRI_LOADERS: >
877 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700878 -D egl=disabled
879 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200880 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000881 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700882 -D dri3=disabled
883 -D gallium-vdpau=disabled
884 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000885 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700886 -D gallium-va=disabled
887 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000888 -D gallium-nine=false
889 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200890 script:
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200891 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Dave Airlie137d7d22020-10-06 10:49:00 +1000892 - LLVM_VERSION=9 .gitlab-ci/meson-build.sh
893 - .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200894
Michel Dänzer82b30092019-05-03 18:19:25 +0200895meson-vulkan:
896 extends: .meson-build
897 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700898 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200899 DRI_LOADERS: >
900 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700901 -D gbm=disabled
902 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100903 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200904 -D osmesa=none
905 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700906 -D dri3=enabled
907 -D gallium-vdpau=disabled
908 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200909 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700910 -D gallium-va=disabled
911 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200912 -D gallium-nine=false
913 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200914 -D b_sanitize=undefined
915 -D c_args=-fno-sanitize-recover=all
916 -D cpp_args=-fno-sanitize-recover=all
917 UBSAN_OPTIONS: "print_stacktrace=1"
Alejandro Piñeiroe4af07b2020-10-01 12:08:17 +0200918 VULKAN_DRIVERS: intel,amd,freedreno,broadcom
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200919 EXTRA_OPTION: >
920 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100921 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800922 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200923
Eric Anholt11aa32a2019-07-11 12:58:28 -0700924meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200925 extends:
926 - .meson-cross
927 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700928 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100929 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100930 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100931 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700932 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700933 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800934 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700935
Michel Dänzer65610ec2020-01-30 18:21:15 +0100936meson-s390x:
937 extends:
938 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200939 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100940 tags:
941 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100942 variables:
943 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200944 EXTRA_OPTION: >
945 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100946 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100947
948meson-ppc64el:
949 extends:
950 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200951 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100952 variables:
953 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200954 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100955 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100956 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100957
Dylan Baker449f8312019-10-11 09:04:14 -0700958meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700959 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100960 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700961 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700962 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700963 DRI_DRIVERS: ""
964 GALLIUM_DRIVERS: "swrast"
965 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700966 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700967 -Dosmesa=gallium
968 --cross-file=.gitlab-ci/x86_64-w64-mingw32
969
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100970.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200971 extends:
972 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200973 # Cancel job if a newer commit is pushed to the same branch
974 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700975 variables:
976 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200977 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700978 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
979 - rm -rf install
980 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100981 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700982 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800983 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100984 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700985 paths:
986 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100987
Dave Airlie0a172dc2020-09-29 08:40:13 +1000988.use-x86_test-gl:
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100989 extends:
990 - .test
991 variables:
992 TAG: *x86_test-gl
993 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200994 needs:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100995 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700996
Dave Airlie0a172dc2020-09-29 08:40:13 +1000997.test-gl:
998 extends:
999 - .use-x86_test-gl
1000 needs:
1001 - x86_test-gl
1002 - meson-testing
1003
Samuel Pitoiset0b246d32019-11-18 09:30:27 +01001004.test-vk:
1005 extends:
1006 - .test
1007 variables:
1008 TAG: *x86_test-vk
1009 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
1010 needs:
1011 - meson-testing
1012 - x86_test-vk
1013
Dave Airlie0a172dc2020-09-29 08:40:13 +10001014.test-cl:
1015 extends:
1016 - .use-x86_test-gl
1017 needs:
1018 - x86_test-gl
1019 - meson-clover-testing
1020
Michel Dänzer576f7b62019-10-22 17:16:52 +02001021.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001022 extends:
1023 - .test-gl
1024 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +01001025 artifacts:
1026 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +01001027 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +01001028 paths:
1029 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +02001030 variables:
1031 LIBGL_ALWAYS_SOFTWARE: 1
1032 PIGLIT_NO_WINDOW: 1
1033 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001034 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +02001035
Dave Airlie0a172dc2020-09-29 08:40:13 +10001036piglit-cl:
1037 extends:
1038 - .piglit-test
1039 - .test-cl
Daniel Stone76f74bd2020-10-27 07:42:15 +00001040 - .llvmpipe-cl-rules
Dave Airlie0a172dc2020-09-29 08:40:13 +10001041 variables:
1042 LP_CL: 1
1043 LP_NUM_THREADS: 1
1044 PIGLIT_PROFILES: cl
1045 PIGLIT_OPTIONS: >
Dave Airliefa5acbb2020-10-27 15:25:24 +10001046 -x bswap -x phatk -x clz-optimizations
Dave Airlie0a172dc2020-09-29 08:40:13 +10001047 script:
1048 - install/piglit/run_cl.sh
1049
Michel Dänzer576f7b62019-10-22 17:16:52 +02001050piglit-quick_gl:
1051 extends: .piglit-test
1052 variables:
1053 LP_NUM_THREADS: 0
1054 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +01001055 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -08001056 -x egl_ext_device_
1057 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -08001058 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +02001059 -x glx-multithread-clearbuffer
1060 -x glx-multithread-shader-compile
1061 -x max-texture-size
1062 -x maxsize
1063 PIGLIT_PROFILES: quick_gl
1064
Michel Dänzer5585b8e2019-12-03 10:45:28 +01001065piglit-glslparser:
1066 extends: .piglit-test
1067 variables:
1068 LP_NUM_THREADS: 0
1069 PIGLIT_PROFILES: glslparser
1070
1071piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +02001072 extends: .piglit-test
1073 variables:
1074 LP_NUM_THREADS: 1
Michel Dänzer5585b8e2019-12-03 10:45:28 +01001075 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +02001076
Samuel Pitoiset16b999b2019-11-19 08:39:00 +01001077.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +02001078 variables:
1079 DEQP_SKIPS: deqp-default-skips.txt
1080 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001081 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +02001082
Samuel Pitoiset16b999b2019-11-19 08:39:00 +01001083.deqp-test-gl:
1084 extends:
1085 - .test-gl
1086 - .deqp-test
1087
1088.deqp-test-vk:
1089 extends:
1090 - .test-vk
1091 - .deqp-test
1092 variables:
1093 DEQP_VER: vk
1094
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +01001095.fossilize-test:
1096 extends: .test-vk
1097 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001098 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +02001099 artifacts:
1100 when: on_failure
1101 name: "mesa_${CI_JOB_NAME}"
1102 paths:
1103 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +01001104
Michel Dänzer71436f92020-03-03 18:17:12 +01001105llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -07001106 variables:
1107 DEQP_VER: gles2
Eric Anholtfd24a952020-06-26 10:59:41 -07001108 # Don't use threads inside llvmpipe, we've already got all cores
1109 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -08001110 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -07001111 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
1112 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -07001113 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001114 extends:
1115 - .deqp-test-gl
1116 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001117
Michel Dänzer71436f92020-03-03 18:17:12 +01001118softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001119 extends:
1120 - llvmpipe-gles2
1121 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001122 variables:
Eric Anholt553cd822019-08-09 10:32:40 -07001123 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -08001124 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -07001125 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001126 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -07001127
Michel Dänzer71436f92020-03-03 18:17:12 +01001128softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -07001129 variables:
1130 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +01001131 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -08001132
Michel Dänzer71436f92020-03-03 18:17:12 +01001133softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +02001134 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -08001135 variables:
1136 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +01001137 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001138
Eric Anholt86840612020-08-25 13:43:27 -07001139# Note that KHR-GL3* test sets include all tests from the previous
1140# version, so we only need to run one test list (unlike dEQP-GLES,
1141# where the test sets are separate).
1142softpipe-gl:
1143 variables:
1144 DEQP_VER: gl33
1145 extends:
1146 - softpipe-gles2
1147
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001148virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001149 variables:
1150 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001151 DEQP_NO_SAVE_RESULTS: 1
Daniel Stonee513d8d2020-08-17 18:47:16 +01001152 DEQP_SKIPS: deqp-virgl-gl-skips.txt
Eric Anholtfd24a952020-06-26 10:59:41 -07001153 # Don't use threads inside llvmpipe, we've already got all cores
1154 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001155 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001156 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
1157 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001158 LIBGL_ALWAYS_SOFTWARE: "true"
1159 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001160 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001161 extends:
1162 - .deqp-test-gl
1163 - .virgl-rules
1164
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001165virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001166 variables:
1167 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001168 DEQP_RUNNER_OPTIONS: "--timeout 180"
1169 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001170
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001171virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +02001172 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001173 variables:
1174 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001175 MESA_GLES_VERSION_OVERRIDE: "3.1"
1176 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +10001177 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001178 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001179
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +02001180virgl-gl30-on-gl:
1181 variables:
1182 DEQP_VER: gl30
1183 extends: virgl-gles2-on-gl
1184
1185virgl-gl31-on-gl:
1186 variables:
1187 DEQP_VER: gl31
1188 extends: virgl-gles2-on-gl
1189
1190virgl-gl32-on-gl:
1191 variables:
1192 DEQP_VER: gl32
1193 extends: virgl-gles2-on-gl
1194
Eric Anholt8edaa842020-03-19 11:45:01 -07001195# Rules for tests that should not be present in MRs or the main
1196# project's pipeline (don't block marge or report red on
1197# mesa/mesamaster) but should be present on pipelines in personal
1198# branches (so you can opt in to running the flaky test when you want
1199# to).
1200.test-manual:
1201 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001202 - *ignore_scheduled_pipelines
Michel Dänzer22a7c252020-09-08 17:52:24 +02001203 - if: *is-forked-branch
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001204 changes:
1205 *all_paths
1206 when: manual
1207 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001208
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001209virgl-gles2-on-gles:
1210 variables:
1211 VIRGL_HOST_API: GLES
1212 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1213 extends:
1214 - virgl-gles2-on-gl
1215 - .test-manual
1216
1217virgl-gles3-on-gles:
1218 variables:
1219 VIRGL_HOST_API: GLES
1220 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1221 extends:
1222 - virgl-gles3-on-gl
1223 - .test-manual
1224
1225virgl-gles31-on-gles:
1226 variables:
1227 VIRGL_HOST_API: GLES
1228 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1229 extends:
1230 - virgl-gles31-on-gl
1231 - .test-manual
1232
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001233arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001234 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001235 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001236 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001237 BM_KERNEL: /lava-files/cheza-kernel
1238 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 -07001239 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001240 DEQP_FLAKES: deqp-freedreno-a630-flakes.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001241 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001242 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001243 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001244 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001245 - google-freedreno-cheza
1246 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001247 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001248
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001249arm64_a630_gles31:
1250 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001251 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001252 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -07001253
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001254arm64_a630_gles3:
1255 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001256 variables:
1257 DEQP_VER: gles3
1258
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001259# We almost always manage to lower UBOs back to constant uploads in
1260# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001261arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001262 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001263 variables:
1264 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001265 IR3_SHADER_DEBUG: nouboopt
1266 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001267
1268# The driver does some guessing as to whether to render using gmem
1269# or bypass, and some GLES3.1 features interact with either one.
1270# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001271arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001272 extends: arm64_a630_gles31
1273 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001274 CI_NODE_INDEX: 1
1275 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001276 FD_MESA_DEBUG: nogmem
1277 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1278
Rob Clarke5169b12020-07-16 14:20:22 -07001279arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001280 extends:
1281 - arm64_a630_gles2
1282 variables:
1283 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1284 DEVICE_NAME: "freedreno-a630"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001285 DRIVER_NAME: "freedreno"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001286 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001287 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001288 # This lets us run several more traces which don't use any features we're
1289 # missing.
1290 MESA_GLSL_VERSION_OVERRIDE: "460"
1291 MESA_GL_VERSION_OVERRIDE: "4.6"
Alexandros Frantzisf4210df2020-09-04 14:20:39 +03001292 artifacts:
1293 reports:
1294 junit: results/junit.xml
Eric Anholtb88c46f2020-06-08 14:51:59 -07001295
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001296# Along with checking gmem path, check that we don't get obvious nir
1297# validation failures (though it's too expensive to have it on for the
1298# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001299arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001300 extends: arm64_a630_gles31
1301 variables:
1302 CI_NODE_INDEX: 1
1303 CI_NODE_TOTAL: 5
1304 FD_MESA_DEBUG: nobypass
Eric Anholt5082ac02020-04-17 12:02:37 -07001305
Eric Anholt5c0d34c2020-08-27 09:28:53 -07001306arm64_a630_gl:
1307 extends: arm64_a630_gles2
1308 variables:
1309 DEQP_VER: gl30
1310
Rob Clark1b39d742020-09-01 17:14:51 -07001311# disabled pending https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/1859
1312.arm64_a630_gles3_multisample:
1313 extends: arm64_a630_gles3
1314 variables:
1315 DEQP_CONFIG: rgba8888d24s8ms4
1316 DEQP_VARIANT: multisample
1317 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-multisample-fails.txt
1318
1319# disabled pending https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/1859
1320.arm64_a630_gles31_multisample:
1321 extends: arm64_a630_gles31
1322 variables:
1323 DEQP_CONFIG: rgba8888d24s8ms4
1324 DEQP_VARIANT: multisample
1325 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-multisample-fails.txt
1326
1327arm64_a630_gles3_565nozs:
1328 extends: arm64_a630_gles3
1329 variables:
1330 DEQP_CONFIG: rgb565d0s0ms0
1331 DEQP_VARIANT: 565-no-depth-no-stencil
1332 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-565nozs-fails.txt
1333
1334arm64_a630_gles31_565nozs:
1335 extends: arm64_a630_gles31
1336 variables:
1337 DEQP_CONFIG: rgb565d0s0ms0
1338 DEQP_VARIANT: 565-no-depth-no-stencil
1339 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-565nozs-fails.txt
1340
Jonathan Marekbe33d582020-07-14 10:58:56 -04001341arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001342 extends: arm64_a630_gles2
1343 variables:
1344 DEQP_VER: vk
1345 CI_NODE_INDEX: 1
1346 CI_NODE_TOTAL: 50
1347 VK_DRIVER: freedreno
1348 # Force binning in the main run, which makes sure we render at
1349 # least 2 bins. This is the path that impacts the most different
1350 # features. However, we end up with flaky results in
1351 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1352 TU_DEBUG: forcebin
1353
1354# Do a separate sysmem pass over the testcases that really affect sysmem
1355# rendering. This is currently very flaky, leave it as an option for devs
1356# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001357arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001358 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001359 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001360 variables:
1361 CI_NODE_INDEX: 1
1362 CI_NODE_TOTAL: 10
1363 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1364 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1365 TU_DEBUG: sysmem
1366
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001367.baremetal-test:
1368 extends:
1369 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001370 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001371 # Cancel job if a newer commit is pushed to the same branch
1372 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001373 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001374 artifacts:
1375 when: always
1376 name: "mesa_${CI_JOB_NAME}"
1377 paths:
1378 - results/
1379 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001380
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001381arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001382 extends:
1383 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001384 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001385 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001386 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001387 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001388 BM_DTB: /lava-files/apq8016-sbc.dtb
1389 BM_ROOTFS: /lava-files/rootfs-arm64
1390 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001391 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001392 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001393 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001394 DEQP_SKIPS: deqp-default-skips.txt
1395 DEQP_FLAKES: deqp-freedreno-a307-flakes.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001396 DEQP_VER: gles2
1397 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001398 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001399 # Since we can't get artifacts back yet, skip making them.
1400 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001401 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001402 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001403 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001404 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001405 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001406 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001407 - google-freedreno-db410c
1408
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001409# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001410arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001411 extends:
1412 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001413 variables:
1414 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001415 DEQP_PARALLEL: 1
1416 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001417 CI_NODE_TOTAL: 25
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001418
Eric Anholtae442c32020-05-15 16:15:07 -07001419# Fractional runs with debug options. Note that since we're not
1420# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1421arm64_a306_gles3_options:
1422 extends: arm64_a306_gles2
1423 variables:
1424 DEQP_VER: gles3
1425 script:
1426 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001427 - 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 -07001428
Eric Anholtb05c1072020-10-16 17:20:11 -07001429.arm64_a530_deqp:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001430 extends:
1431 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001432 variables:
1433 BM_KERNEL: /lava-files/db820c-kernel
1434 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001435 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1436 # current upstream kernel.
1437 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001438 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001439 DEQP_FLAKES: deqp-freedreno-a530-flakes.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001440 DEQP_EXPECTED_RENDERER: FD530
Eric Anholt4bc15e72020-03-03 14:38:09 -08001441 tags:
1442 - google-freedreno-db820c
1443
Eric Anholtb05c1072020-10-16 17:20:11 -07001444arm64_a530_gles2:
1445 extends:
1446 - .arm64_a530_deqp
1447 parallel: 2
1448
Eric Anholt4bc15e72020-03-03 14:38:09 -08001449arm64_a530_gles3:
1450 extends:
Eric Anholtb05c1072020-10-16 17:20:11 -07001451 - .arm64_a530_deqp
Eric Anholt4bc15e72020-03-03 14:38:09 -08001452 variables:
1453 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001454 DEQP_PARALLEL: 1
1455 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001456 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001457
Eric Anholt6c011522020-04-22 12:08:06 -07001458arm64_a530_gles31:
1459 extends:
1460 - arm64_a530_gles3
1461 variables:
1462 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001463 CI_NODE_INDEX: 1
1464 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001465
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001466# RADV CI
1467.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001468 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001469 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001470 variables:
1471 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001472 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001473
Eric Anholt8edaa842020-03-19 11:45:01 -07001474# Can only be triggered manually on personal branches because RADV is the only
1475# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001476radv_polaris10_vkcts:
1477 extends:
1478 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001479 - .test-radv
1480 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001481 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001482 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1483 tags:
1484 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001485
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001486radv-fossils:
1487 extends:
1488 - .fossilize-test
1489 - .test-radv
1490 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001491 # Pitcairn (GFX6)
1492 - export RADV_FORCE_FAMILY="pitcairn"
1493 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001494 # Bonaire (GFX7)
1495 - export RADV_FORCE_FAMILY="bonaire"
1496 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001497 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001498 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001499 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001500 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001501 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001502 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001503 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001504 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001505 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001506 # Sienna Cichlid (GFX10)
1507 - export RADV_FORCE_FAMILY="gfx1030"
1508 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001509
Andres Gomez0ac731b12020-02-20 18:26:30 +02001510# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001511.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001512 cache:
1513 key: ${CI_JOB_NAME}
1514 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001515 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001516 variables:
1517 TRACIE_UPLOAD_TO_MINIO: 1
Alexandros Frantzis7e82e252020-09-04 12:44:53 +03001518 artifacts:
1519 reports:
1520 junit: results/junit.xml
Andres Gomez0ac731b12020-02-20 18:26:30 +02001521
1522.traces-test-gl:
1523 extends:
1524 - .test-gl
1525 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001526 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001527 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001528
1529.traces-test-vk:
1530 extends:
1531 - .test-vk
1532 - .traces-test
1533 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001534 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001535
1536llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001537 extends:
1538 - .traces-test-gl
1539 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001540 variables:
1541 LIBGL_ALWAYS_SOFTWARE: "true"
1542 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001543 DEVICE_NAME: "gl-vmware-llvmpipe"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001544 DRIVER_NAME: "llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001545
1546radv-polaris10-traces:
1547 extends:
1548 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001549 - .test-radv
1550 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001551 variables:
1552 DEVICE_NAME: "vk-amd-polaris10"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001553 DRIVER_NAME: "radv"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001554 tags:
1555 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001556
Andres Gomezb6b100c2020-04-24 19:32:42 +03001557radv-raven-traces:
1558 extends:
1559 - .traces-test-vk
1560 - .test-radv
1561 - .test-manual
1562 variables:
1563 DEVICE_NAME: "vk-amd-raven"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001564 DRIVER_NAME: "radv"
Andres Gomezb6b100c2020-04-24 19:32:42 +03001565 tags:
1566 - raven
1567
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001568virgl-traces:
1569 extends:
1570 - .traces-test-gl
1571 - .virgl-rules
1572 variables:
1573 LIBGL_ALWAYS_SOFTWARE: "true"
1574 GALLIUM_DRIVER: "virpipe"
1575 DEVICE_NAME: "gl-virgl"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001576 DRIVER_NAME: "virgl"
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001577 MESA_GLES_VERSION_OVERRIDE: "3.1"
1578 MESA_GLSL_VERSION_OVERRIDE: "310"