blob: c4cc688619010299c29358c10dca9b70bdadf35c [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änzer22a7c252020-09-08 17:52:24 +020047 # Forked project branch
48 - if: &is-forked-branch '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
49 when: manual
Michel Dänzer24f53292020-09-08 17:30:49 +020050 # Forked project branch / pre-merge pipeline
51 - if: &is-forked-branch-or-pre-merge '$CI_PROJECT_PATH != "mesa/mesa" || $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
52 when: manual
Michel Dänzerac56d662020-09-08 12:20:39 +020053 # Pipeline runs for the master branch of the main project
54 - if: &is-main-master '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master"'
55 when: always
Michel Dänzerb47f1bb2020-09-08 17:47:18 +020056 # Post-merge pipeline
57 - if: &is-post-merge '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
58 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +020059 # Post-merge pipeline, not for Marge Bot
60 - if: &is-post-merge-not-for-marge '$GITLAB_USER_LOGIN != "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME && $CI_PROJECT_PATH == "mesa/mesa"'
61 when: on_success
Michel Dänzer0fcb8b32020-09-08 17:58:32 +020062 # Pre-merge pipeline
63 - if: &is-pre-merge '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
64 when: on_success
Michel Dänzerf79ae942020-09-08 12:31:08 +020065 # Pre-merge pipeline for Marge Bot
66 - if: &is-pre-merge-for-marge '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
67 when: on_success
Michel Dänzerac56d662020-09-08 12:20:39 +020068
69
Erik Faye-Lund87747072020-06-22 11:10:29 +020070.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020071 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020072 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020073 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020074 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020075 - pip3 install sphinx sphinx_rtd_theme
76 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020077
78pages:
79 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020080 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020081 artifacts:
82 paths:
83 - public
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020084 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020085 - *ignore_scheduled_pipelines
Michel Dänzerac56d662020-09-08 12:20:39 +020086 - if: *is-main-master
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020087 changes: &docs-or-ci
88 - docs/**/*
89 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020090 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020091 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000092
Erik Faye-Lund87747072020-06-22 11:10:29 +020093test-docs:
94 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +020095 # Cancel job if a newer commit is pushed to the same branch
96 interruptible: true
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020097 stage: container+docs
Michel Dänzer1c612e82020-06-22 11:13:05 +020098 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020099 - *ignore_scheduled_pipelines
Michel Dänzerf79ae942020-09-08 12:31:08 +0200100 - if: *is-pre-merge-for-marge
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +0200101 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200102 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +0200103 - if: *is-post-merge-not-for-marge
Michel Dänzerf13f32f2020-08-31 18:46:37 +0200104 changes: *docs-or-ci
105 when: on_success
Michel Dänzer24f53292020-09-08 17:30:49 +0200106 - if: *is-forked-branch-or-pre-merge
Michel Dänzer615f1c82020-09-01 11:44:54 +0200107 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +0200108 when: manual
109 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +0200110
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000111# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +0200112.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +0200113 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200114 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +0200115 # If any files affecting the pipeline are changed, build/test jobs run
116 # automatically once all dependency jobs have passed
117 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +0100118 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +0200119 - bin/git_sha1_gen.py
120 - bin/install_megadrivers.py
121 - bin/meson_get_version.py
122 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +0100123 # GitLab CI
124 - .gitlab-ci.yml
125 - .gitlab-ci/**/*
126 # Meson
127 - meson*
128 - build-support/**/*
129 - subprojects/**/*
130 # SCons
131 - SConstruct
132 - scons/**/*
133 - common.py
134 # Source code
135 - include/**/*
136 - src/**/*
137 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200138 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100139 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100140 retry:
141 max: 2
142 when:
143 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000144
Michel Dänzer8775b742020-01-13 09:45:57 +0100145success:
146 stage: success
147 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200148 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200149 - *ignore_scheduled_pipelines
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200150 - if: *is-post-merge
Michel Dänzer6cba4682020-06-22 11:16:17 +0200151 when: never
152 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
153 changes: *docs-or-ci
154 when: never
155 - changes: *all_paths
156 when: never
Michel Dänzer0fcb8b32020-09-08 17:58:32 +0200157 - if: *is-pre-merge
Michel Dänzera6c4db92020-08-28 17:08:57 +0200158 when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100159 variables:
160 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100161 script:
162 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
163
164
Michel Dänzere426f402019-09-06 17:35:52 +0200165.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700166 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100167 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700168 when: always
169 untracked: false
170 paths:
171 # Watch out! Artifacts are relative to the build dir.
172 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
173 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000174
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100175# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100176#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800177# 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 +0100178# image doesn't exist yet, the container stage job generates it.
179#
180# In order to generate a new image, one should generally change the tag.
181# While removing the image from the registry would also work, that's not
182# recommended except for ephemeral images during development: Replacing
183# an image after a significant amount of time might pull in newer
184# versions of gcc/clang or other packages, which might break the build
185# with older commits using the same tag.
186#
187# After merging a change resulting in generating a new image to the
188# main repository, it's recommended to remove the image from the source
189# repository's container registry, so that the image from the main
190# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200191
Eric Engestrom81b98e92019-10-14 23:04:14 +0100192.container:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200193 stage: container+docs
Eric Engestrom81b98e92019-10-14 23:04:14 +0100194 extends:
195 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200196 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200197 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200198 # Run pipeline by default in the main project if any CI pipeline
199 # configuration files were changed, to ensure docker images are up to date
Michel Dänzerb47f1bb2020-09-08 17:47:18 +0200200 - if: *is-post-merge
Michel Dänzer42fe6002020-04-03 12:50:11 +0200201 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200202 - .gitlab-ci.yml
203 - .gitlab-ci/**/*
204 when: on_success
205 # Run pipeline by default if it was triggered by Marge Bot, is for a
206 # merge request, and any files affecting the pipeline were changed
Michel Dänzerf79ae942020-09-08 12:31:08 +0200207 - if: *is-pre-merge-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200208 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200209 *all_paths
210 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200211 # Run pipeline by default in the main project if it was not triggered by
212 # Marge Bot, and any files affecting the pipeline were changed
Michel Dänzera33026e2020-09-08 12:36:11 +0200213 - if: *is-post-merge-not-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200214 changes:
215 *all_paths
216 when: on_success
217 # Allow triggering jobs manually in other cases if any files affecting the
218 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200219 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200220 *all_paths
221 when: manual
222 # Otherwise, container jobs won't run
223 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100224 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800225 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100226 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700227 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 +0100228 # no need to pull the whole repo to build the container image
229 GIT_STRATEGY: none
230
Michel Dänzera85da8e2020-05-30 15:53:41 +0200231# Debian 10 based x86 build image base
232x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200233 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100234 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100235 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100236 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700237 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-08-13-gold"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200238
239.use-x86_build-base:
240 extends:
241 - x86_build-base
242 - .ci-run-policy
243 stage: container-2
244 variables:
245 BASE_TAG: *x86_build-base
246 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
247 needs:
248 - x86_build-base
249
250# Debian 10 based x86 main build image
251x86_build:
252 extends:
253 - .use-x86_build-base
254 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200255 FDO_DISTRIBUTION_TAG: &x86_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000256
Michel Dänzer3a48f452019-11-13 17:43:41 +0100257.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100258 variables:
259 TAG: *x86_build
260 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200261 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100262 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200263
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200264# Debian 10 based i386 cross-build image
265i386_build:
266 extends:
267 - .use-x86_build-base
268 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200269 FDO_DISTRIBUTION_TAG: &i386_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200270
271.use-i386_build:
272 variables:
273 TAG: *i386_build
274 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
275 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200276 - i386_build
277
278# Debian 10 based ppc64el cross-build image
279ppc64el_build:
280 extends:
281 - .use-x86_build-base
282 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200283 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200284
285.use-ppc64el_build:
286 variables:
287 TAG: *ppc64el_build
288 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
289 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200290 - ppc64el_build
291
292# Debian 10 based s390x cross-build image
293s390x_build:
294 extends:
295 - .use-x86_build-base
296 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200297 FDO_DISTRIBUTION_TAG: &s390x_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200298
299.use-s390x_build:
300 variables:
301 TAG: *s390x_build
302 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
303 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200304 - s390x_build
305
Michel Dänzerc2366f02020-05-16 17:17:23 +0200306# Debian 10 based x86 test image base
307x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200308 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100309 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700310 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-08-13-gold"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200311
312.use-x86_test-base:
313 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200314 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200315 - .ci-run-policy
316 stage: container-2
317 variables:
318 BASE_TAG: *x86_test-base
319 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
320 needs:
321 - x86_test-base
322
323# Debian 10 based x86 test image for GL
324x86_test-gl:
325 extends: .use-x86_test-base
326 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200327 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-09-10-libdrm"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100328
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100329# Debian 10 based x86 test image for VK
330x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200331 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100332 variables:
Eric Anholteb02b312020-08-26 16:57:44 -0700333 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-08-31-deqp-version"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100334
Michel Dänzerc6c76522019-11-11 18:13:28 +0100335# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100336x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200337 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200338 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700339 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800340 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200341
Michel Dänzer3a48f452019-11-13 17:43:41 +0100342.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100343 variables:
344 TAG: *x86_build_old
345 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200346 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100347 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200348
Michel Dänzerc6c76522019-11-11 18:13:28 +0100349# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100350arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200351 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100352 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100353 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700354 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200355 FDO_DISTRIBUTION_TAG: &arm_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000356
Michel Dänzerc6c76522019-11-11 18:13:28 +0100357.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100358 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100359 TAG: *arm_build
360 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
361 needs:
362 - arm_build
363
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200364# Debian 10 based x86 baremetal image base
365arm_test-base:
366 extends:
367 - .fdo.container-build@debian
368 - .container
369 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200370 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-09-10-libdrm"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200371
372.use-arm_test-base:
373 extends:
374 - arm_test-base
375 - .ci-run-policy
376 stage: container-2
377 variables:
378 BASE_TAG: *arm_test-base
379 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
380 needs:
381 - arm_test-base
382
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200383# x86 image with ARM64 rootfs for baremetal testing.
384arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200385 extends:
386 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700387 variables:
Eric Anholtb4317fc2020-09-02 10:49:44 -0700388 FDO_DISTRIBUTION_TAG: &arm64_test "2020-09-04-pagetables"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700389
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200390.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700391 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200392 TAG: *arm64_test
393 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700394 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200395 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700396
Daniel Stone07885cb2020-03-24 11:11:36 +0000397# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700398#
Daniel Stone07885cb2020-03-24 11:11:36 +0000399# Unlike the above Linux-based builds - including MinGW/SCons builds which
400# cross-compile for Windows - which use the freedesktop ci-templates, we
401# cannot use the same scheme here. As Windows lacks support for
402# Docker-in-Docker, and Podman does not run natively on Windows, we have
403# to open-code much of the same ourselves.
404#
405# This is achieved by first running in a native Windows shell instance
406# (host PowerShell) in the container stage to build and push the image,
407# then in the build stage by executing inside Docker.
408
409.windows-docker-vs2019:
410 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100411 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000412 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
413 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
414
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100415.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000416 extends:
417 - .container
418 - .windows-docker-vs2019
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200419 stage: container+docs
Daniel Stone07885cb2020-03-24 11:11:36 +0000420 variables:
421 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100422 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000423 tags:
424 - windows
425 - shell
426 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100427 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000428 script:
429 - .\.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 -0700430
Daniel Stone07885cb2020-03-24 11:11:36 +0000431.use-windows_build_vs2019:
432 extends: .windows-docker-vs2019
433 image: "$WINDOWS_IMAGE"
434 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100435 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100436
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200437git_archive:
438 extends: .fdo.container-build@alpine
439 stage: container+docs
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200440 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200441 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200442 when: always
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200443 variables:
444 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200445 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200446 # no need to pull the whole repo to build the container image
447 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200448 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200449 FDO_DISTRIBUTION_PACKAGES: git py3-pip
450
451
452# Git archive
453
454make git archive:
455 stage: git-archive
456 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200457 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200458 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200459 when: on_success
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200460 # ensure we are running on packet
461 tags:
462 - packet.net
463 variables:
464 FDO_DISTRIBUTION_TAG: *git-archive-tag
465 FDO_REPO_SUFFIX: *git-archive-suffix
466 needs:
467 - git_archive
468
469 script:
470 # compress the current folder
471 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
472
473 # login with the JWT token
474 - ci-fairy minio login $CI_JOB_JWT
475 - 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
476
477
Eric Engestrom46d23c02019-01-20 11:26:53 +0000478# BUILD
479
Dylan Baker06e46472019-10-23 14:21:31 -0700480# Shared between windows and Linux
481.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100482 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200483 # Cancel job if a newer commit is pushed to the same branch
484 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000485 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100486 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700487 when: always
488 paths:
489 - _build/meson-logs/*.txt
490 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200491 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700492 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700493
494# Just Linux
495.build-linux:
496 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200497 variables:
498 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100499 CCACHE_COMPRESS: "true"
500 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000501 # Use ccache transparently, and print stats before/after
502 before_script:
503 - export PATH="/usr/lib/ccache:$PATH"
504 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100505 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000506 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000507 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000508
Dylan Baker19851c92019-10-23 14:36:19 -0700509.build-windows:
510 extends: .build-common
511 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000512 - windows
513 - docker
514 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100515 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700516 cache:
517 key: ${CI_JOB_NAME}
518 paths:
519 - subprojects/packagecache
520
Eric Engestrom46d23c02019-01-20 11:26:53 +0000521.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100522 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700523 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100524 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100525 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100526 variables:
527 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000528 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200529 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000530
Eric Engestrom06b245b2019-01-23 15:46:10 +0000531.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100532 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700533 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100534 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100535 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000536 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700537 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000538
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100539meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200540 extends:
541 - .meson-build
542 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200543 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700544 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200545 DRI_LOADERS: >
546 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700547 -D gbm=enabled
548 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100549 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100550 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700551 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200552 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100553 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100554 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800555 EXTRA_OPTION: >
556 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200557 UPLOAD_FOR_LAVA: 1
558 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100559 script:
560 - .gitlab-ci/meson-build.sh
561 - .gitlab-ci/prepare-artifacts.sh
562
Michel Dänzerc56f0912020-03-12 12:29:40 +0100563meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100564 extends: .meson-build
565 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700566 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100567 DRI_LOADERS: >
568 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700569 -D gbm=enabled
570 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100571 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200572 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700573 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200574 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700575 -D gallium-vdpau=enabled
576 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200577 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700578 -D gallium-va=enabled
579 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200580 -D gallium-nine=true
581 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100582 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 +1000583 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200584 EXTRA_OPTION: >
585 -D osmesa=gallium
586 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000587 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200588 script:
589 - .gitlab-ci/meson-build.sh
590 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700591 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200592
Eric Anholt373e25e2020-08-24 10:15:35 -0700593# Test a release build with -Werror so new warnings don't sneak in.
594meson-release:
595 extends: .meson-build
596 variables:
597 UNWIND: "enabled"
598 DRI_LOADERS: >
599 -D glx=dri
600 -D gbm=enabled
601 -D egl=enabled
602 -D platforms=x11,wayland
603 GALLIUM_ST: >
604 -D dri3=enabled
605 -D gallium-extra-hud=true
606 -D gallium-vdpau=enabled
607 -D gallium-xvmc=disabled
608 -D gallium-omx=disabled
609 -D gallium-va=enabled
610 -D gallium-xa=enabled
611 -D gallium-nine=false
612 -D gallium-opencl=disabled
613 -D llvm=false
614 GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
615 BUILDTYPE: "release"
616 EXTRA_OPTION: >
617 -D osmesa=none
618 -D tools=all
619 -D werror=true
620 script:
621 - .gitlab-ci/meson-build.sh
622
Michel Dänzerc56f0912020-03-12 12:29:40 +0100623meson-classic:
624 extends: .meson-build
625 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700626 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100627 DRI_LOADERS: >
628 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700629 -D gbm=enabled
630 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100631 -D platforms=x11,wayland,drm,surfaceless
632 DRI_DRIVERS: "auto"
633 EXTRA_OPTION: >
634 -D osmesa=classic
635 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000636 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100637
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700638meson-android:
639 extends: .meson-build
640 variables:
641 UNWIND: "disabled"
642 DRI_LOADERS: >
643 -D glx=disabled
644 -D gbm=disabled
645 -D egl=enabled
646 -D platforms=android
647 GALLIUM_DRIVERS: freedreno
648 VULKAN_DRIVERS: freedreno,intel,amd
649 EXTRA_OPTION: >
650 -D android-stub=true
651 -D werror=true
652 GALLIUM_ST: >
653 -D dri3=disabled
654 -D gallium-vdpau=disabled
655 -D gallium-xvmc=disabled
656 -D gallium-omx=disabled
657 -D gallium-va=disabled
658 -D gallium-xa=disabled
659 -D gallium-nine=false
660 -D gallium-opencl=disabled
661
Michel Dänzere5364462019-09-13 11:59:43 +0200662.meson-cross:
663 extends:
664 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100665 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200666 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700667 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200668 DRI_LOADERS: >
669 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700670 -D gbm=disabled
671 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100672 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200673 -D osmesa=none
674 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700675 -D dri3=disabled
676 -D gallium-vdpau=disabled
677 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200678 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700679 -D gallium-va=disabled
680 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200681 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100682 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200683
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200684.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100685 extends:
686 - .meson-cross
687 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200688 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200689 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200690 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100691 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200692 tags:
693 - aarch64
694
695meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100696 extends:
697 - .meson-arm
698 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200699 variables:
700 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200701 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800702 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700703 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200704 UPLOAD_FOR_LAVA: 1
705 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100706 script:
707 - .gitlab-ci/meson-build.sh
708 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200709
710meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200711 extends:
712 - .meson-arm
713 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200714 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100715 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800716 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700717 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200718 UPLOAD_FOR_LAVA: 1
719 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200720 script:
721 - .gitlab-ci/meson-build.sh
722 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200723
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100724meson-arm64-build-test:
725 extends:
726 - .meson-arm
727 - .ci-deqp-artifacts
728 variables:
729 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200730 EXTRA_OPTION: >
731 -Dtools=panfrost
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100732 script:
733 - .gitlab-ci/meson-build.sh
734
Michel Dänzera2cce702019-03-20 15:58:31 +0100735meson-clang:
736 extends: .meson-build
737 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700738 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100739 DRI_LOADERS: >
740 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100741 DRI_DRIVERS: "auto"
742 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100743 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100744 CC: "ccache clang-9"
745 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100746
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100747.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700748 extends:
749 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000750 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100751 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700752 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000753 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700754
Michel Dänzer82b30092019-05-03 18:19:25 +0200755scons-win64:
756 extends: .scons-build
757 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000758 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200759 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000760 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000761
Michel Dänzer68977152019-05-03 10:58:48 +0200762meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000763 extends: .meson-build
764 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700765 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000766 DRI_LOADERS: >
767 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700768 -D egl=disabled
769 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200770 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000771 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700772 -D dri3=disabled
773 -D gallium-vdpau=disabled
774 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000775 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700776 -D gallium-va=disabled
777 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000778 -D gallium-nine=false
779 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200780 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200781 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200782 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200783
784meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200785 extends:
786 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100787 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200788 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700789 UNWIND: "disabled"
Michel Dänzer8a199922019-09-06 17:04:47 +0200790 DRI_LOADERS: >
791 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700792 -D egl=disabled
793 -D gbm=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100794 -D platforms=[]
Michel Dänzer8a199922019-09-06 17:04:47 +0200795 GALLIUM_DRIVERS: "i915,r600"
796 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200797 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
798 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
799 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Michel Dänzer262e3882020-05-30 23:55:28 +0200800 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
801 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000802
Michel Dänzer82b30092019-05-03 18:19:25 +0200803meson-vulkan:
804 extends: .meson-build
805 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700806 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200807 DRI_LOADERS: >
808 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700809 -D gbm=disabled
810 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100811 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200812 -D osmesa=none
813 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700814 -D dri3=enabled
815 -D gallium-vdpau=disabled
816 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200817 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700818 -D gallium-va=disabled
819 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200820 -D gallium-nine=false
821 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200822 -D b_sanitize=undefined
823 -D c_args=-fno-sanitize-recover=all
824 -D cpp_args=-fno-sanitize-recover=all
825 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200826 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200827 EXTRA_OPTION: >
828 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100829 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800830 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200831
Eric Anholt11aa32a2019-07-11 12:58:28 -0700832meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200833 extends:
834 - .meson-cross
835 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700836 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100837 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100838 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100839 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700840 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700841 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800842 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700843
Michel Dänzer65610ec2020-01-30 18:21:15 +0100844meson-s390x:
845 extends:
846 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200847 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100848 tags:
849 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100850 variables:
851 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200852 EXTRA_OPTION: >
853 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100854 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100855
856meson-ppc64el:
857 extends:
858 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200859 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100860 variables:
861 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200862 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100863 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100864 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100865
Dylan Baker449f8312019-10-11 09:04:14 -0700866meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700867 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100868 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700869 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700870 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700871 DRI_DRIVERS: ""
872 GALLIUM_DRIVERS: "swrast"
873 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700874 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700875 -Dosmesa=gallium
876 --cross-file=.gitlab-ci/x86_64-w64-mingw32
877
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100878.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200879 extends:
880 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200881 # Cancel job if a newer commit is pushed to the same branch
882 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700883 variables:
884 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200885 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700886 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
887 - rm -rf install
888 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100889 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700890 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800891 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100892 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700893 paths:
894 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100895
896.test-gl:
897 extends:
898 - .test
899 variables:
900 TAG: *x86_test-gl
901 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200902 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100903 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100904 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700905
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100906.test-vk:
907 extends:
908 - .test
909 variables:
910 TAG: *x86_test-vk
911 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
912 needs:
913 - meson-testing
914 - x86_test-vk
915
Michel Dänzer576f7b62019-10-22 17:16:52 +0200916.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100917 extends:
918 - .test-gl
919 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100920 artifacts:
921 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100922 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100923 paths:
924 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200925 variables:
926 LIBGL_ALWAYS_SOFTWARE: 1
927 PIGLIT_NO_WINDOW: 1
928 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100929 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200930
931piglit-quick_gl:
932 extends: .piglit-test
933 variables:
934 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000935 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200936 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100937 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -0800938 -x egl_ext_device_
939 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800940 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200941 -x glx-multithread-clearbuffer
942 -x glx-multithread-shader-compile
943 -x max-texture-size
944 -x maxsize
945 PIGLIT_PROFILES: quick_gl
946
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100947piglit-glslparser:
948 extends: .piglit-test
949 variables:
950 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000951 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100952 PIGLIT_PROFILES: glslparser
953
954piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200955 extends: .piglit-test
956 variables:
957 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000958 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100959 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200960
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100961.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200962 variables:
963 DEQP_SKIPS: deqp-default-skips.txt
964 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100965 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200966
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100967.deqp-test-gl:
968 extends:
969 - .test-gl
970 - .deqp-test
971
972.deqp-test-vk:
973 extends:
974 - .test-vk
975 - .deqp-test
976 variables:
977 DEQP_VER: vk
978
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100979.fossilize-test:
980 extends: .test-vk
981 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100982 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +0200983 artifacts:
984 when: on_failure
985 name: "mesa_${CI_JOB_NAME}"
986 paths:
987 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100988
Michel Dänzer71436f92020-03-03 18:17:12 +0100989llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700990 variables:
991 DEQP_VER: gles2
Dave Airliee6b2af52019-12-03 15:23:45 +1000992 NIR_VALIDATE: 0
Eric Anholtfd24a952020-06-26 10:59:41 -0700993 # Don't use threads inside llvmpipe, we've already got all cores
994 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -0800995 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700996 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
997 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -0700998 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100999 extends:
1000 - .deqp-test-gl
1001 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001002
Michel Dänzer71436f92020-03-03 18:17:12 +01001003softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001004 extends:
1005 - llvmpipe-gles2
1006 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -07001007 variables:
Eric Anholt553cd822019-08-09 10:32:40 -07001008 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -08001009 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -07001010 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001011 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -07001012
Michel Dänzer71436f92020-03-03 18:17:12 +01001013softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -07001014 variables:
1015 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +01001016 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -08001017
Michel Dänzer71436f92020-03-03 18:17:12 +01001018softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +02001019 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -08001020 variables:
1021 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +01001022 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001023
Eric Anholt86840612020-08-25 13:43:27 -07001024# Note that KHR-GL3* test sets include all tests from the previous
1025# version, so we only need to run one test list (unlike dEQP-GLES,
1026# where the test sets are separate).
1027softpipe-gl:
1028 variables:
1029 DEQP_VER: gl33
1030 extends:
1031 - softpipe-gles2
1032
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001033virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001034 variables:
1035 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001036 NIR_VALIDATE: 0
1037 DEQP_NO_SAVE_RESULTS: 1
Daniel Stonee513d8d2020-08-17 18:47:16 +01001038 DEQP_SKIPS: deqp-virgl-gl-skips.txt
Eric Anholtfd24a952020-06-26 10:59:41 -07001039 # Don't use threads inside llvmpipe, we've already got all cores
1040 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001041 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001042 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
1043 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001044 LIBGL_ALWAYS_SOFTWARE: "true"
1045 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001046 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001047 extends:
1048 - .deqp-test-gl
1049 - .virgl-rules
1050
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001051virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001052 variables:
1053 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001054 DEQP_RUNNER_OPTIONS: "--timeout 180"
1055 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001056
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001057virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +02001058 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001059 variables:
1060 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001061 MESA_GLES_VERSION_OVERRIDE: "3.1"
1062 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +10001063 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001064 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001065
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +02001066virgl-gl30-on-gl:
1067 variables:
1068 DEQP_VER: gl30
1069 extends: virgl-gles2-on-gl
1070
1071virgl-gl31-on-gl:
1072 variables:
1073 DEQP_VER: gl31
1074 extends: virgl-gles2-on-gl
1075
1076virgl-gl32-on-gl:
1077 variables:
1078 DEQP_VER: gl32
1079 extends: virgl-gles2-on-gl
1080
Eric Anholt8edaa842020-03-19 11:45:01 -07001081# Rules for tests that should not be present in MRs or the main
1082# project's pipeline (don't block marge or report red on
1083# mesa/mesamaster) but should be present on pipelines in personal
1084# branches (so you can opt in to running the flaky test when you want
1085# to).
1086.test-manual:
1087 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001088 - *ignore_scheduled_pipelines
Michel Dänzer22a7c252020-09-08 17:52:24 +02001089 - if: *is-forked-branch
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001090 changes:
1091 *all_paths
1092 when: manual
1093 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001094
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001095virgl-gles2-on-gles:
1096 variables:
1097 VIRGL_HOST_API: GLES
1098 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1099 extends:
1100 - virgl-gles2-on-gl
1101 - .test-manual
1102
1103virgl-gles3-on-gles:
1104 variables:
1105 VIRGL_HOST_API: GLES
1106 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1107 extends:
1108 - virgl-gles3-on-gl
1109 - .test-manual
1110
1111virgl-gles31-on-gles:
1112 variables:
1113 VIRGL_HOST_API: GLES
1114 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1115 extends:
1116 - virgl-gles31-on-gl
1117 - .test-manual
1118
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001119arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001120 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001121 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001122 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001123 BM_KERNEL: /lava-files/cheza-kernel
1124 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 -07001125 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001126 DEQP_FLAKES: deqp-freedreno-a630-flakes.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001127 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001128 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001129 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001130 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001131 - google-freedreno-cheza
1132 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001133 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001134
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001135arm64_a630_gles31:
1136 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001137 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001138 DEQP_VER: gles31
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001139 # gles31 is about 12 minutes with validation enabled.
1140 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001141
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001142arm64_a630_gles3:
1143 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001144 variables:
1145 DEQP_VER: gles3
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001146 # gles3 is about 15 minutes with validation enabled.
1147 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001148
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001149# We almost always manage to lower UBOs back to constant uploads in
1150# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001151arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001152 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001153 variables:
1154 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001155 IR3_SHADER_DEBUG: nouboopt
1156 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001157
1158# The driver does some guessing as to whether to render using gmem
1159# or bypass, and some GLES3.1 features interact with either one.
1160# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001161arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001162 extends: arm64_a630_gles31
1163 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001164 CI_NODE_INDEX: 1
1165 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001166 FD_MESA_DEBUG: nogmem
1167 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1168
Rob Clarke5169b12020-07-16 14:20:22 -07001169arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001170 extends:
1171 - arm64_a630_gles2
1172 variables:
1173 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1174 DEVICE_NAME: "freedreno-a630"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001175 DRIVER_NAME: "freedreno"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001176 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001177 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001178 # This lets us run several more traces which don't use any features we're
1179 # missing.
1180 MESA_GLSL_VERSION_OVERRIDE: "460"
1181 MESA_GL_VERSION_OVERRIDE: "4.6"
Alexandros Frantzisf4210df2020-09-04 14:20:39 +03001182 artifacts:
1183 reports:
1184 junit: results/junit.xml
Eric Anholtb88c46f2020-06-08 14:51:59 -07001185
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001186# Along with checking gmem path, check that we don't get obvious nir
1187# validation failures (though it's too expensive to have it on for the
1188# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001189arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001190 extends: arm64_a630_gles31
1191 variables:
1192 CI_NODE_INDEX: 1
1193 CI_NODE_TOTAL: 5
1194 FD_MESA_DEBUG: nobypass
1195 NIR_VALIDATE: 1
Eric Anholt5082ac02020-04-17 12:02:37 -07001196
Eric Anholt5c0d34c2020-08-27 09:28:53 -07001197arm64_a630_gl:
1198 extends: arm64_a630_gles2
1199 variables:
1200 DEQP_VER: gl30
1201
Jonathan Marekbe33d582020-07-14 10:58:56 -04001202arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001203 extends: arm64_a630_gles2
1204 variables:
1205 DEQP_VER: vk
1206 CI_NODE_INDEX: 1
1207 CI_NODE_TOTAL: 50
1208 VK_DRIVER: freedreno
1209 # Force binning in the main run, which makes sure we render at
1210 # least 2 bins. This is the path that impacts the most different
1211 # features. However, we end up with flaky results in
1212 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1213 TU_DEBUG: forcebin
1214
1215# Do a separate sysmem pass over the testcases that really affect sysmem
1216# rendering. This is currently very flaky, leave it as an option for devs
1217# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001218arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001219 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001220 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001221 variables:
1222 CI_NODE_INDEX: 1
1223 CI_NODE_TOTAL: 10
1224 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1225 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1226 TU_DEBUG: sysmem
1227
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001228.baremetal-test:
1229 extends:
1230 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001231 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001232 # Cancel job if a newer commit is pushed to the same branch
1233 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001234 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001235 artifacts:
1236 when: always
1237 name: "mesa_${CI_JOB_NAME}"
1238 paths:
1239 - results/
1240 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001241
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001242arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001243 extends:
1244 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001245 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001246 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001247 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001248 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001249 BM_DTB: /lava-files/apq8016-sbc.dtb
1250 BM_ROOTFS: /lava-files/rootfs-arm64
1251 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001252 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001253 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001254 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001255 DEQP_SKIPS: deqp-default-skips.txt
1256 DEQP_FLAKES: deqp-freedreno-a307-flakes.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001257 DEQP_VER: gles2
1258 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001259 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001260 # Since we can't get artifacts back yet, skip making them.
1261 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001262 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001263 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001264 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001265 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001266 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001267 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001268 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001269 - google-freedreno-db410c
1270
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001271# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001272arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001273 extends:
1274 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001275 variables:
1276 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001277 DEQP_PARALLEL: 1
1278 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001279 CI_NODE_TOTAL: 25
1280 NIR_VALIDATE: 0
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001281
Eric Anholtae442c32020-05-15 16:15:07 -07001282# Fractional runs with debug options. Note that since we're not
1283# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1284arm64_a306_gles3_options:
1285 extends: arm64_a306_gles2
1286 variables:
1287 DEQP_VER: gles3
1288 script:
1289 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001290 - 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 -07001291
Eric Anholt4bc15e72020-03-03 14:38:09 -08001292arm64_a530_gles2:
1293 extends:
1294 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001295 variables:
1296 BM_KERNEL: /lava-files/db820c-kernel
1297 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001298 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1299 # current upstream kernel.
1300 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001301 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001302 DEQP_FLAKES: deqp-freedreno-a530-flakes.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001303 DEQP_EXPECTED_RENDERER: FD530
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001304 NIR_VALIDATE: 0
Eric Anholt4bc15e72020-03-03 14:38:09 -08001305 tags:
1306 - google-freedreno-db820c
1307
1308arm64_a530_gles3:
1309 extends:
1310 - arm64_a530_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001311 variables:
1312 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001313 DEQP_PARALLEL: 1
1314 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001315 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001316
Eric Anholt6c011522020-04-22 12:08:06 -07001317arm64_a530_gles31:
1318 extends:
1319 - arm64_a530_gles3
1320 variables:
1321 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001322 CI_NODE_INDEX: 1
1323 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001324
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001325# RADV CI
1326.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001327 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001328 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001329 variables:
1330 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001331 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001332
Eric Anholt8edaa842020-03-19 11:45:01 -07001333# Can only be triggered manually on personal branches because RADV is the only
1334# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001335radv_polaris10_vkcts:
1336 extends:
1337 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001338 - .test-radv
1339 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001340 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001341 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1342 tags:
1343 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001344
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001345radv-fossils:
1346 extends:
1347 - .fossilize-test
1348 - .test-radv
1349 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001350 # Pitcairn (GFX6)
1351 - export RADV_FORCE_FAMILY="pitcairn"
1352 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001353 # Bonaire (GFX7)
1354 - export RADV_FORCE_FAMILY="bonaire"
1355 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001356 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001357 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001358 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001359 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001360 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001361 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001362 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001363 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001364 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001365 # Sienna Cichlid (GFX10)
1366 - export RADV_FORCE_FAMILY="gfx1030"
1367 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001368
Andres Gomez0ac731b12020-02-20 18:26:30 +02001369# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001370.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001371 cache:
1372 key: ${CI_JOB_NAME}
1373 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001374 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001375 variables:
1376 TRACIE_UPLOAD_TO_MINIO: 1
Alexandros Frantzis7e82e252020-09-04 12:44:53 +03001377 artifacts:
1378 reports:
1379 junit: results/junit.xml
Andres Gomez0ac731b12020-02-20 18:26:30 +02001380
1381.traces-test-gl:
1382 extends:
1383 - .test-gl
1384 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001385 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001386 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001387
1388.traces-test-vk:
1389 extends:
1390 - .test-vk
1391 - .traces-test
1392 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001393 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001394
1395llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001396 extends:
1397 - .traces-test-gl
1398 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001399 variables:
1400 LIBGL_ALWAYS_SOFTWARE: "true"
1401 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001402 DEVICE_NAME: "gl-vmware-llvmpipe"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001403 DRIVER_NAME: "llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001404
1405radv-polaris10-traces:
1406 extends:
1407 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001408 - .test-radv
1409 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001410 variables:
1411 DEVICE_NAME: "vk-amd-polaris10"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001412 DRIVER_NAME: "radv"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001413 tags:
1414 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001415
Andres Gomezb6b100c2020-04-24 19:32:42 +03001416radv-raven-traces:
1417 extends:
1418 - .traces-test-vk
1419 - .test-radv
1420 - .test-manual
1421 variables:
1422 DEVICE_NAME: "vk-amd-raven"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001423 DRIVER_NAME: "radv"
Andres Gomezb6b100c2020-04-24 19:32:42 +03001424 tags:
1425 - raven
1426
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001427virgl-traces:
1428 extends:
1429 - .traces-test-gl
1430 - .virgl-rules
1431 variables:
1432 LIBGL_ALWAYS_SOFTWARE: "true"
1433 GALLIUM_DRIVER: "virpipe"
1434 DEVICE_NAME: "gl-virgl"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001435 DRIVER_NAME: "virgl"
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001436 MESA_GLES_VERSION_OVERRIDE: "3.1"
1437 MESA_GLSL_VERSION_OVERRIDE: "310"