blob: de0b56b5352ac6e0e98e587eb0f610d39a7d4af7 [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:
47 # Pipeline runs for the master branch of the main project
48 - if: &is-main-master '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master"'
49 when: always
Michel Dänzera33026e2020-09-08 12:36:11 +020050 # Post-merge pipeline, not for Marge Bot
51 - 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"'
52 when: on_success
Michel Dänzerf79ae942020-09-08 12:31:08 +020053 # Pre-merge pipeline for Marge Bot
54 - if: &is-pre-merge-for-marge '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
55 when: on_success
Michel Dänzerac56d662020-09-08 12:20:39 +020056
57
Erik Faye-Lund87747072020-06-22 11:10:29 +020058.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020059 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020060 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020061 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020062 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020063 - pip3 install sphinx sphinx_rtd_theme
64 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020065
66pages:
67 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020068 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020069 artifacts:
70 paths:
71 - public
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020072 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020073 - *ignore_scheduled_pipelines
Michel Dänzerac56d662020-09-08 12:20:39 +020074 - if: *is-main-master
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020075 changes: &docs-or-ci
76 - docs/**/*
77 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020078 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020079 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000080
Erik Faye-Lund87747072020-06-22 11:10:29 +020081test-docs:
82 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +020083 # Cancel job if a newer commit is pushed to the same branch
84 interruptible: true
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020085 stage: container+docs
Michel Dänzer1c612e82020-06-22 11:13:05 +020086 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020087 - *ignore_scheduled_pipelines
Michel Dänzerf79ae942020-09-08 12:31:08 +020088 - if: *is-pre-merge-for-marge
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020089 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +020090 when: on_success
Michel Dänzera33026e2020-09-08 12:36:11 +020091 - if: *is-post-merge-not-for-marge
Michel Dänzerf13f32f2020-08-31 18:46:37 +020092 changes: *docs-or-ci
93 when: on_success
Michel Dänzer615f1c82020-09-01 11:44:54 +020094 - if: '$CI_PROJECT_PATH != "mesa/mesa" || $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
95 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +020096 when: manual
97 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +020098
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000099# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +0200100.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +0200101 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200102 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +0200103 # If any files affecting the pipeline are changed, build/test jobs run
104 # automatically once all dependency jobs have passed
105 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +0100106 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +0200107 - bin/git_sha1_gen.py
108 - bin/install_megadrivers.py
109 - bin/meson_get_version.py
110 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +0100111 # GitLab CI
112 - .gitlab-ci.yml
113 - .gitlab-ci/**/*
114 # Meson
115 - meson*
116 - build-support/**/*
117 - subprojects/**/*
118 # SCons
119 - SConstruct
120 - scons/**/*
121 - common.py
122 # Source code
123 - include/**/*
124 - src/**/*
125 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200126 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100127 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100128 retry:
129 max: 2
130 when:
131 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000132
Michel Dänzer8775b742020-01-13 09:45:57 +0100133success:
134 stage: success
135 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200136 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200137 - *ignore_scheduled_pipelines
Michel Dänzer0308e632020-08-31 18:49:42 +0200138 - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer6cba4682020-06-22 11:16:17 +0200139 when: never
140 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
141 changes: *docs-or-ci
142 when: never
143 - changes: *all_paths
144 when: never
Michel Dänzera6c4db92020-08-28 17:08:57 +0200145 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
146 when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100147 variables:
148 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100149 script:
150 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
151
152
Michel Dänzere426f402019-09-06 17:35:52 +0200153.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700154 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100155 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700156 when: always
157 untracked: false
158 paths:
159 # Watch out! Artifacts are relative to the build dir.
160 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
161 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000162
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100163# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100164#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800165# 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 +0100166# image doesn't exist yet, the container stage job generates it.
167#
168# In order to generate a new image, one should generally change the tag.
169# While removing the image from the registry would also work, that's not
170# recommended except for ephemeral images during development: Replacing
171# an image after a significant amount of time might pull in newer
172# versions of gcc/clang or other packages, which might break the build
173# with older commits using the same tag.
174#
175# After merging a change resulting in generating a new image to the
176# main repository, it's recommended to remove the image from the source
177# repository's container registry, so that the image from the main
178# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200179
Eric Engestrom81b98e92019-10-14 23:04:14 +0100180.container:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200181 stage: container+docs
Eric Engestrom81b98e92019-10-14 23:04:14 +0100182 extends:
183 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200184 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200185 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200186 # Run pipeline by default in the main project if any CI pipeline
187 # configuration files were changed, to ensure docker images are up to date
Michel Dänzer45793c02020-08-27 09:36:22 +0200188 - if: '$CI_PROJECT_PATH == "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer42fe6002020-04-03 12:50:11 +0200189 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200190 - .gitlab-ci.yml
191 - .gitlab-ci/**/*
192 when: on_success
193 # Run pipeline by default if it was triggered by Marge Bot, is for a
194 # merge request, and any files affecting the pipeline were changed
Michel Dänzerf79ae942020-09-08 12:31:08 +0200195 - if: *is-pre-merge-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200196 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200197 *all_paths
198 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200199 # Run pipeline by default in the main project if it was not triggered by
200 # Marge Bot, and any files affecting the pipeline were changed
Michel Dänzera33026e2020-09-08 12:36:11 +0200201 - if: *is-post-merge-not-for-marge
Michel Dänzer549b4a32020-06-29 11:33:13 +0200202 changes:
203 *all_paths
204 when: on_success
205 # Allow triggering jobs manually in other cases if any files affecting the
206 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200207 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200208 *all_paths
209 when: manual
210 # Otherwise, container jobs won't run
211 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100212 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800213 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100214 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700215 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 +0100216 # no need to pull the whole repo to build the container image
217 GIT_STRATEGY: none
218
Michel Dänzera85da8e2020-05-30 15:53:41 +0200219# Debian 10 based x86 build image base
220x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200221 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100222 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100223 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100224 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700225 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-08-13-gold"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200226
227.use-x86_build-base:
228 extends:
229 - x86_build-base
230 - .ci-run-policy
231 stage: container-2
232 variables:
233 BASE_TAG: *x86_build-base
234 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
235 needs:
236 - x86_build-base
237
238# Debian 10 based x86 main build image
239x86_build:
240 extends:
241 - .use-x86_build-base
242 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200243 FDO_DISTRIBUTION_TAG: &x86_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000244
Michel Dänzer3a48f452019-11-13 17:43:41 +0100245.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100246 variables:
247 TAG: *x86_build
248 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200249 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100250 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200251
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200252# Debian 10 based i386 cross-build image
253i386_build:
254 extends:
255 - .use-x86_build-base
256 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200257 FDO_DISTRIBUTION_TAG: &i386_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200258
259.use-i386_build:
260 variables:
261 TAG: *i386_build
262 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
263 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200264 - i386_build
265
266# Debian 10 based ppc64el cross-build image
267ppc64el_build:
268 extends:
269 - .use-x86_build-base
270 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200271 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200272
273.use-ppc64el_build:
274 variables:
275 TAG: *ppc64el_build
276 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
277 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200278 - ppc64el_build
279
280# Debian 10 based s390x cross-build image
281s390x_build:
282 extends:
283 - .use-x86_build-base
284 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200285 FDO_DISTRIBUTION_TAG: &s390x_build "2020-09-10-libdrm"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200286
287.use-s390x_build:
288 variables:
289 TAG: *s390x_build
290 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
291 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200292 - s390x_build
293
Michel Dänzerc2366f02020-05-16 17:17:23 +0200294# Debian 10 based x86 test image base
295x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200296 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100297 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700298 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-08-13-gold"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200299
300.use-x86_test-base:
301 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200302 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200303 - .ci-run-policy
304 stage: container-2
305 variables:
306 BASE_TAG: *x86_test-base
307 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
308 needs:
309 - x86_test-base
310
311# Debian 10 based x86 test image for GL
312x86_test-gl:
313 extends: .use-x86_test-base
314 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200315 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-09-10-libdrm"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100316
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100317# Debian 10 based x86 test image for VK
318x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200319 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100320 variables:
Eric Anholteb02b312020-08-26 16:57:44 -0700321 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-08-31-deqp-version"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100322
Michel Dänzerc6c76522019-11-11 18:13:28 +0100323# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100324x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200325 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200326 variables:
Eric Anholtd3b652f2020-08-13 14:21:50 -0700327 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-08-13-gold"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800328 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200329
Michel Dänzer3a48f452019-11-13 17:43:41 +0100330.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100331 variables:
332 TAG: *x86_build_old
333 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200334 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100335 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200336
Michel Dänzerc6c76522019-11-11 18:13:28 +0100337# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100338arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200339 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100340 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100341 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700342 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200343 FDO_DISTRIBUTION_TAG: &arm_build "2020-09-10-libdrm"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000344
Michel Dänzerc6c76522019-11-11 18:13:28 +0100345.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100346 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100347 TAG: *arm_build
348 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
349 needs:
350 - arm_build
351
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200352# Debian 10 based x86 baremetal image base
353arm_test-base:
354 extends:
355 - .fdo.container-build@debian
356 - .container
357 variables:
Christian Gmeiner2f62a442020-09-09 22:21:14 +0200358 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-09-10-libdrm"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200359
360.use-arm_test-base:
361 extends:
362 - arm_test-base
363 - .ci-run-policy
364 stage: container-2
365 variables:
366 BASE_TAG: *arm_test-base
367 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
368 needs:
369 - arm_test-base
370
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200371# x86 image with ARM64 rootfs for baremetal testing.
372arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200373 extends:
374 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700375 variables:
Eric Anholtb4317fc2020-09-02 10:49:44 -0700376 FDO_DISTRIBUTION_TAG: &arm64_test "2020-09-04-pagetables"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700377
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200378.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700379 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200380 TAG: *arm64_test
381 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700382 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200383 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700384
Daniel Stone07885cb2020-03-24 11:11:36 +0000385# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700386#
Daniel Stone07885cb2020-03-24 11:11:36 +0000387# Unlike the above Linux-based builds - including MinGW/SCons builds which
388# cross-compile for Windows - which use the freedesktop ci-templates, we
389# cannot use the same scheme here. As Windows lacks support for
390# Docker-in-Docker, and Podman does not run natively on Windows, we have
391# to open-code much of the same ourselves.
392#
393# This is achieved by first running in a native Windows shell instance
394# (host PowerShell) in the container stage to build and push the image,
395# then in the build stage by executing inside Docker.
396
397.windows-docker-vs2019:
398 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100399 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000400 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
401 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
402
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100403.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000404 extends:
405 - .container
406 - .windows-docker-vs2019
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200407 stage: container+docs
Daniel Stone07885cb2020-03-24 11:11:36 +0000408 variables:
409 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100410 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000411 tags:
412 - windows
413 - shell
414 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100415 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000416 script:
417 - .\.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 -0700418
Daniel Stone07885cb2020-03-24 11:11:36 +0000419.use-windows_build_vs2019:
420 extends: .windows-docker-vs2019
421 image: "$WINDOWS_IMAGE"
422 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100423 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100424
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200425git_archive:
426 extends: .fdo.container-build@alpine
427 stage: container+docs
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200428 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200429 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200430 when: always
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200431 variables:
432 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200433 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200434 # no need to pull the whole repo to build the container image
435 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200436 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200437 FDO_DISTRIBUTION_PACKAGES: git py3-pip
438
439
440# Git archive
441
442make git archive:
443 stage: git-archive
444 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200445 rules:
Michel Dänzerc3ae82b2020-09-08 17:44:40 +0200446 - if: *is-scheduled-pipeline
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200447 when: on_success
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200448 # ensure we are running on packet
449 tags:
450 - packet.net
451 variables:
452 FDO_DISTRIBUTION_TAG: *git-archive-tag
453 FDO_REPO_SUFFIX: *git-archive-suffix
454 needs:
455 - git_archive
456
457 script:
458 # compress the current folder
459 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
460
461 # login with the JWT token
462 - ci-fairy minio login $CI_JOB_JWT
463 - 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
464
465
Eric Engestrom46d23c02019-01-20 11:26:53 +0000466# BUILD
467
Dylan Baker06e46472019-10-23 14:21:31 -0700468# Shared between windows and Linux
469.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100470 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200471 # Cancel job if a newer commit is pushed to the same branch
472 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000473 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100474 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700475 when: always
476 paths:
477 - _build/meson-logs/*.txt
478 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200479 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700480 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700481
482# Just Linux
483.build-linux:
484 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200485 variables:
486 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100487 CCACHE_COMPRESS: "true"
488 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000489 # Use ccache transparently, and print stats before/after
490 before_script:
491 - export PATH="/usr/lib/ccache:$PATH"
492 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100493 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000494 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000495 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000496
Dylan Baker19851c92019-10-23 14:36:19 -0700497.build-windows:
498 extends: .build-common
499 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000500 - windows
501 - docker
502 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100503 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700504 cache:
505 key: ${CI_JOB_NAME}
506 paths:
507 - subprojects/packagecache
508
Eric Engestrom46d23c02019-01-20 11:26:53 +0000509.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100510 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700511 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100512 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100513 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100514 variables:
515 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000516 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200517 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000518
Eric Engestrom06b245b2019-01-23 15:46:10 +0000519.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100520 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700521 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100522 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100523 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000524 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700525 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000526
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100527meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200528 extends:
529 - .meson-build
530 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200531 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700532 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200533 DRI_LOADERS: >
534 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700535 -D gbm=enabled
536 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100537 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100538 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700539 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200540 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100541 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100542 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800543 EXTRA_OPTION: >
544 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200545 UPLOAD_FOR_LAVA: 1
546 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100547 script:
548 - .gitlab-ci/meson-build.sh
549 - .gitlab-ci/prepare-artifacts.sh
550
Michel Dänzerc56f0912020-03-12 12:29:40 +0100551meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100552 extends: .meson-build
553 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700554 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100555 DRI_LOADERS: >
556 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700557 -D gbm=enabled
558 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100559 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200560 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700561 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200562 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700563 -D gallium-vdpau=enabled
564 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200565 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700566 -D gallium-va=enabled
567 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200568 -D gallium-nine=true
569 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100570 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 +1000571 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200572 EXTRA_OPTION: >
573 -D osmesa=gallium
574 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000575 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200576 script:
577 - .gitlab-ci/meson-build.sh
578 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700579 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200580
Eric Anholt373e25e2020-08-24 10:15:35 -0700581# Test a release build with -Werror so new warnings don't sneak in.
582meson-release:
583 extends: .meson-build
584 variables:
585 UNWIND: "enabled"
586 DRI_LOADERS: >
587 -D glx=dri
588 -D gbm=enabled
589 -D egl=enabled
590 -D platforms=x11,wayland
591 GALLIUM_ST: >
592 -D dri3=enabled
593 -D gallium-extra-hud=true
594 -D gallium-vdpau=enabled
595 -D gallium-xvmc=disabled
596 -D gallium-omx=disabled
597 -D gallium-va=enabled
598 -D gallium-xa=enabled
599 -D gallium-nine=false
600 -D gallium-opencl=disabled
601 -D llvm=false
602 GALLIUM_DRIVERS: "nouveau,kmsro,r300,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
603 BUILDTYPE: "release"
604 EXTRA_OPTION: >
605 -D osmesa=none
606 -D tools=all
607 -D werror=true
608 script:
609 - .gitlab-ci/meson-build.sh
610
Michel Dänzerc56f0912020-03-12 12:29:40 +0100611meson-classic:
612 extends: .meson-build
613 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700614 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100615 DRI_LOADERS: >
616 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700617 -D gbm=enabled
618 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100619 -D platforms=x11,wayland,drm,surfaceless
620 DRI_DRIVERS: "auto"
621 EXTRA_OPTION: >
622 -D osmesa=classic
623 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000624 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100625
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700626meson-android:
627 extends: .meson-build
628 variables:
629 UNWIND: "disabled"
630 DRI_LOADERS: >
631 -D glx=disabled
632 -D gbm=disabled
633 -D egl=enabled
634 -D platforms=android
635 GALLIUM_DRIVERS: freedreno
636 VULKAN_DRIVERS: freedreno,intel,amd
637 EXTRA_OPTION: >
638 -D android-stub=true
639 -D werror=true
640 GALLIUM_ST: >
641 -D dri3=disabled
642 -D gallium-vdpau=disabled
643 -D gallium-xvmc=disabled
644 -D gallium-omx=disabled
645 -D gallium-va=disabled
646 -D gallium-xa=disabled
647 -D gallium-nine=false
648 -D gallium-opencl=disabled
649
Michel Dänzere5364462019-09-13 11:59:43 +0200650.meson-cross:
651 extends:
652 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100653 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200654 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700655 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200656 DRI_LOADERS: >
657 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700658 -D gbm=disabled
659 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100660 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200661 -D osmesa=none
662 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700663 -D dri3=disabled
664 -D gallium-vdpau=disabled
665 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200666 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700667 -D gallium-va=disabled
668 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200669 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100670 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200671
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200672.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100673 extends:
674 - .meson-cross
675 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200676 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200677 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200678 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100679 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200680 tags:
681 - aarch64
682
683meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100684 extends:
685 - .meson-arm
686 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200687 variables:
688 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200689 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800690 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700691 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200692 UPLOAD_FOR_LAVA: 1
693 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100694 script:
695 - .gitlab-ci/meson-build.sh
696 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200697
698meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200699 extends:
700 - .meson-arm
701 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200702 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100703 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800704 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700705 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200706 UPLOAD_FOR_LAVA: 1
707 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200708 script:
709 - .gitlab-ci/meson-build.sh
710 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200711
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100712meson-arm64-build-test:
713 extends:
714 - .meson-arm
715 - .ci-deqp-artifacts
716 variables:
717 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200718 EXTRA_OPTION: >
719 -Dtools=panfrost
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100720 script:
721 - .gitlab-ci/meson-build.sh
722
Michel Dänzera2cce702019-03-20 15:58:31 +0100723meson-clang:
724 extends: .meson-build
725 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700726 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100727 DRI_LOADERS: >
728 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100729 DRI_DRIVERS: "auto"
730 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100731 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100732 CC: "ccache clang-9"
733 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100734
Daniel Stoneb8f2d712020-08-28 19:08:39 +0100735.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700736 extends:
737 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000738 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100739 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700740 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000741 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700742
Michel Dänzer82b30092019-05-03 18:19:25 +0200743scons-win64:
744 extends: .scons-build
745 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000746 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200747 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000748 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000749
Michel Dänzer68977152019-05-03 10:58:48 +0200750meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000751 extends: .meson-build
752 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700753 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000754 DRI_LOADERS: >
755 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700756 -D egl=disabled
757 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200758 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000759 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700760 -D dri3=disabled
761 -D gallium-vdpau=disabled
762 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000763 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700764 -D gallium-va=disabled
765 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000766 -D gallium-nine=false
767 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200768 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200769 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200770 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200771
772meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200773 extends:
774 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100775 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200776 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700777 UNWIND: "disabled"
Michel Dänzer8a199922019-09-06 17:04:47 +0200778 DRI_LOADERS: >
779 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700780 -D egl=disabled
781 -D gbm=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100782 -D platforms=[]
Michel Dänzer8a199922019-09-06 17:04:47 +0200783 GALLIUM_DRIVERS: "i915,r600"
784 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200785 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
786 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
787 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Michel Dänzer262e3882020-05-30 23:55:28 +0200788 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
789 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000790
Michel Dänzer82b30092019-05-03 18:19:25 +0200791meson-vulkan:
792 extends: .meson-build
793 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700794 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200795 DRI_LOADERS: >
796 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700797 -D gbm=disabled
798 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100799 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200800 -D osmesa=none
801 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700802 -D dri3=enabled
803 -D gallium-vdpau=disabled
804 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200805 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700806 -D gallium-va=disabled
807 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200808 -D gallium-nine=false
809 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200810 -D b_sanitize=undefined
811 -D c_args=-fno-sanitize-recover=all
812 -D cpp_args=-fno-sanitize-recover=all
813 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200814 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200815 EXTRA_OPTION: >
816 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100817 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800818 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200819
Eric Anholt11aa32a2019-07-11 12:58:28 -0700820meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200821 extends:
822 - .meson-cross
823 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700824 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100825 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100826 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100827 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700828 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700829 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800830 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700831
Michel Dänzer65610ec2020-01-30 18:21:15 +0100832meson-s390x:
833 extends:
834 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200835 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100836 tags:
837 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100838 variables:
839 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200840 EXTRA_OPTION: >
841 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100842 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100843
844meson-ppc64el:
845 extends:
846 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200847 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100848 variables:
849 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200850 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100851 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100852 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100853
Dylan Baker449f8312019-10-11 09:04:14 -0700854meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700855 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100856 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700857 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700858 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700859 DRI_DRIVERS: ""
860 GALLIUM_DRIVERS: "swrast"
861 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700862 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700863 -Dosmesa=gallium
864 --cross-file=.gitlab-ci/x86_64-w64-mingw32
865
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100866.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200867 extends:
868 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200869 # Cancel job if a newer commit is pushed to the same branch
870 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700871 variables:
872 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200873 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700874 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
875 - rm -rf install
876 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100877 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700878 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800879 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100880 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700881 paths:
882 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100883
884.test-gl:
885 extends:
886 - .test
887 variables:
888 TAG: *x86_test-gl
889 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200890 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100891 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100892 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700893
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100894.test-vk:
895 extends:
896 - .test
897 variables:
898 TAG: *x86_test-vk
899 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
900 needs:
901 - meson-testing
902 - x86_test-vk
903
Michel Dänzer576f7b62019-10-22 17:16:52 +0200904.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100905 extends:
906 - .test-gl
907 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100908 artifacts:
909 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100910 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100911 paths:
912 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200913 variables:
914 LIBGL_ALWAYS_SOFTWARE: 1
915 PIGLIT_NO_WINDOW: 1
916 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100917 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200918
919piglit-quick_gl:
920 extends: .piglit-test
921 variables:
922 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000923 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200924 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100925 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -0800926 -x egl_ext_device_
927 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800928 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200929 -x glx-multithread-clearbuffer
930 -x glx-multithread-shader-compile
931 -x max-texture-size
932 -x maxsize
933 PIGLIT_PROFILES: quick_gl
934
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100935piglit-glslparser:
936 extends: .piglit-test
937 variables:
938 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000939 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100940 PIGLIT_PROFILES: glslparser
941
942piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200943 extends: .piglit-test
944 variables:
945 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000946 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100947 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200948
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100949.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200950 variables:
951 DEQP_SKIPS: deqp-default-skips.txt
952 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100953 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200954
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100955.deqp-test-gl:
956 extends:
957 - .test-gl
958 - .deqp-test
959
960.deqp-test-vk:
961 extends:
962 - .test-vk
963 - .deqp-test
964 variables:
965 DEQP_VER: vk
966
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100967.fossilize-test:
968 extends: .test-vk
969 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100970 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +0200971 artifacts:
972 when: on_failure
973 name: "mesa_${CI_JOB_NAME}"
974 paths:
975 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100976
Michel Dänzer71436f92020-03-03 18:17:12 +0100977llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700978 variables:
979 DEQP_VER: gles2
Dave Airliee6b2af52019-12-03 15:23:45 +1000980 NIR_VALIDATE: 0
Eric Anholtfd24a952020-06-26 10:59:41 -0700981 # Don't use threads inside llvmpipe, we've already got all cores
982 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -0800983 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700984 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
985 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -0700986 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100987 extends:
988 - .deqp-test-gl
989 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700990
Michel Dänzer71436f92020-03-03 18:17:12 +0100991softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100992 extends:
993 - llvmpipe-gles2
994 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700995 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700996 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800997 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700998 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -0700999 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -07001000
Michel Dänzer71436f92020-03-03 18:17:12 +01001001softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -07001002 variables:
1003 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +01001004 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -08001005
Michel Dänzer71436f92020-03-03 18:17:12 +01001006softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +02001007 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -08001008 variables:
1009 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +01001010 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001011
Eric Anholt86840612020-08-25 13:43:27 -07001012# Note that KHR-GL3* test sets include all tests from the previous
1013# version, so we only need to run one test list (unlike dEQP-GLES,
1014# where the test sets are separate).
1015softpipe-gl:
1016 variables:
1017 DEQP_VER: gl33
1018 extends:
1019 - softpipe-gles2
1020
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001021virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001022 variables:
1023 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001024 NIR_VALIDATE: 0
1025 DEQP_NO_SAVE_RESULTS: 1
Daniel Stonee513d8d2020-08-17 18:47:16 +01001026 DEQP_SKIPS: deqp-virgl-gl-skips.txt
Eric Anholtfd24a952020-06-26 10:59:41 -07001027 # Don't use threads inside llvmpipe, we've already got all cores
1028 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001029 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001030 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
1031 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001032 LIBGL_ALWAYS_SOFTWARE: "true"
1033 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -07001034 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001035 extends:
1036 - .deqp-test-gl
1037 - .virgl-rules
1038
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001039virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001040 variables:
1041 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001042 DEQP_RUNNER_OPTIONS: "--timeout 180"
1043 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +02001044
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001045virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +02001046 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001047 variables:
1048 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001049 MESA_GLES_VERSION_OVERRIDE: "3.1"
1050 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +10001051 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001052 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +02001053
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +02001054virgl-gl30-on-gl:
1055 variables:
1056 DEQP_VER: gl30
1057 extends: virgl-gles2-on-gl
1058
1059virgl-gl31-on-gl:
1060 variables:
1061 DEQP_VER: gl31
1062 extends: virgl-gles2-on-gl
1063
1064virgl-gl32-on-gl:
1065 variables:
1066 DEQP_VER: gl32
1067 extends: virgl-gles2-on-gl
1068
Eric Anholt8edaa842020-03-19 11:45:01 -07001069# Rules for tests that should not be present in MRs or the main
1070# project's pipeline (don't block marge or report red on
1071# mesa/mesamaster) but should be present on pipelines in personal
1072# branches (so you can opt in to running the flaky test when you want
1073# to).
1074.test-manual:
1075 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001076 - *ignore_scheduled_pipelines
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001077 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
1078 changes:
1079 *all_paths
1080 when: manual
1081 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001082
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001083virgl-gles2-on-gles:
1084 variables:
1085 VIRGL_HOST_API: GLES
1086 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1087 extends:
1088 - virgl-gles2-on-gl
1089 - .test-manual
1090
1091virgl-gles3-on-gles:
1092 variables:
1093 VIRGL_HOST_API: GLES
1094 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1095 extends:
1096 - virgl-gles3-on-gl
1097 - .test-manual
1098
1099virgl-gles31-on-gles:
1100 variables:
1101 VIRGL_HOST_API: GLES
1102 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1103 extends:
1104 - virgl-gles31-on-gl
1105 - .test-manual
1106
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001107arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001108 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001109 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001110 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001111 BM_KERNEL: /lava-files/cheza-kernel
1112 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 -07001113 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001114 DEQP_FLAKES: deqp-freedreno-a630-flakes.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001115 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001116 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001117 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001118 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001119 - google-freedreno-cheza
1120 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001121 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001122
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001123arm64_a630_gles31:
1124 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001125 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001126 DEQP_VER: gles31
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001127 # gles31 is about 12 minutes with validation enabled.
1128 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001129
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001130arm64_a630_gles3:
1131 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001132 variables:
1133 DEQP_VER: gles3
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001134 # gles3 is about 15 minutes with validation enabled.
1135 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001136
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001137# We almost always manage to lower UBOs back to constant uploads in
1138# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001139arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001140 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001141 variables:
1142 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001143 IR3_SHADER_DEBUG: nouboopt
1144 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001145
1146# The driver does some guessing as to whether to render using gmem
1147# or bypass, and some GLES3.1 features interact with either one.
1148# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001149arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001150 extends: arm64_a630_gles31
1151 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001152 CI_NODE_INDEX: 1
1153 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001154 FD_MESA_DEBUG: nogmem
1155 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1156
Rob Clarke5169b12020-07-16 14:20:22 -07001157arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001158 extends:
1159 - arm64_a630_gles2
1160 variables:
1161 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1162 DEVICE_NAME: "freedreno-a630"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001163 DRIVER_NAME: "freedreno"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001164 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001165 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001166 # This lets us run several more traces which don't use any features we're
1167 # missing.
1168 MESA_GLSL_VERSION_OVERRIDE: "460"
1169 MESA_GL_VERSION_OVERRIDE: "4.6"
Alexandros Frantzisf4210df2020-09-04 14:20:39 +03001170 artifacts:
1171 reports:
1172 junit: results/junit.xml
Eric Anholtb88c46f2020-06-08 14:51:59 -07001173
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001174# Along with checking gmem path, check that we don't get obvious nir
1175# validation failures (though it's too expensive to have it on for the
1176# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001177arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001178 extends: arm64_a630_gles31
1179 variables:
1180 CI_NODE_INDEX: 1
1181 CI_NODE_TOTAL: 5
1182 FD_MESA_DEBUG: nobypass
1183 NIR_VALIDATE: 1
Eric Anholt5082ac02020-04-17 12:02:37 -07001184
Eric Anholt5c0d34c2020-08-27 09:28:53 -07001185arm64_a630_gl:
1186 extends: arm64_a630_gles2
1187 variables:
1188 DEQP_VER: gl30
1189
Jonathan Marekbe33d582020-07-14 10:58:56 -04001190arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001191 extends: arm64_a630_gles2
1192 variables:
1193 DEQP_VER: vk
1194 CI_NODE_INDEX: 1
1195 CI_NODE_TOTAL: 50
1196 VK_DRIVER: freedreno
1197 # Force binning in the main run, which makes sure we render at
1198 # least 2 bins. This is the path that impacts the most different
1199 # features. However, we end up with flaky results in
1200 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1201 TU_DEBUG: forcebin
1202
1203# Do a separate sysmem pass over the testcases that really affect sysmem
1204# rendering. This is currently very flaky, leave it as an option for devs
1205# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001206arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001207 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001208 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001209 variables:
1210 CI_NODE_INDEX: 1
1211 CI_NODE_TOTAL: 10
1212 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1213 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1214 TU_DEBUG: sysmem
1215
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001216.baremetal-test:
1217 extends:
1218 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001219 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001220 # Cancel job if a newer commit is pushed to the same branch
1221 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001222 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001223 artifacts:
1224 when: always
1225 name: "mesa_${CI_JOB_NAME}"
1226 paths:
1227 - results/
1228 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001229
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001230arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001231 extends:
1232 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001233 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001234 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001235 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001236 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001237 BM_DTB: /lava-files/apq8016-sbc.dtb
1238 BM_ROOTFS: /lava-files/rootfs-arm64
1239 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001240 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001241 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001242 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001243 DEQP_SKIPS: deqp-default-skips.txt
1244 DEQP_FLAKES: deqp-freedreno-a307-flakes.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001245 DEQP_VER: gles2
1246 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001247 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001248 # Since we can't get artifacts back yet, skip making them.
1249 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001250 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001251 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001252 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001253 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001254 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001255 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001256 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001257 - google-freedreno-db410c
1258
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001259# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001260arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001261 extends:
1262 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001263 variables:
1264 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001265 DEQP_PARALLEL: 1
1266 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001267 CI_NODE_TOTAL: 25
1268 NIR_VALIDATE: 0
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001269
Eric Anholtae442c32020-05-15 16:15:07 -07001270# Fractional runs with debug options. Note that since we're not
1271# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1272arm64_a306_gles3_options:
1273 extends: arm64_a306_gles2
1274 variables:
1275 DEQP_VER: gles3
1276 script:
1277 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001278 - 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 -07001279
Eric Anholt4bc15e72020-03-03 14:38:09 -08001280arm64_a530_gles2:
1281 extends:
1282 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001283 variables:
1284 BM_KERNEL: /lava-files/db820c-kernel
1285 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001286 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1287 # current upstream kernel.
1288 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001289 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
Eric Anholtc19b7fc2020-08-19 10:43:54 -07001290 DEQP_FLAKES: deqp-freedreno-a530-flakes.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001291 DEQP_EXPECTED_RENDERER: FD530
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001292 NIR_VALIDATE: 0
Eric Anholt4bc15e72020-03-03 14:38:09 -08001293 tags:
1294 - google-freedreno-db820c
1295
1296arm64_a530_gles3:
1297 extends:
1298 - arm64_a530_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001299 variables:
1300 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001301 DEQP_PARALLEL: 1
1302 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001303 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001304
Eric Anholt6c011522020-04-22 12:08:06 -07001305arm64_a530_gles31:
1306 extends:
1307 - arm64_a530_gles3
1308 variables:
1309 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001310 CI_NODE_INDEX: 1
1311 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001312
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001313# RADV CI
1314.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001315 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001316 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001317 variables:
1318 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001319 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001320
Eric Anholt8edaa842020-03-19 11:45:01 -07001321# Can only be triggered manually on personal branches because RADV is the only
1322# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001323radv_polaris10_vkcts:
1324 extends:
1325 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001326 - .test-radv
1327 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001328 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001329 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1330 tags:
1331 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001332
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001333radv-fossils:
1334 extends:
1335 - .fossilize-test
1336 - .test-radv
1337 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001338 # Pitcairn (GFX6)
1339 - export RADV_FORCE_FAMILY="pitcairn"
1340 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001341 # Bonaire (GFX7)
1342 - export RADV_FORCE_FAMILY="bonaire"
1343 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001344 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001345 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001346 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001347 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001348 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001349 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001350 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001351 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001352 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001353 # Sienna Cichlid (GFX10)
1354 - export RADV_FORCE_FAMILY="gfx1030"
1355 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001356
Andres Gomez0ac731b12020-02-20 18:26:30 +02001357# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001358.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001359 cache:
1360 key: ${CI_JOB_NAME}
1361 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001362 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001363 variables:
1364 TRACIE_UPLOAD_TO_MINIO: 1
Alexandros Frantzis7e82e252020-09-04 12:44:53 +03001365 artifacts:
1366 reports:
1367 junit: results/junit.xml
Andres Gomez0ac731b12020-02-20 18:26:30 +02001368
1369.traces-test-gl:
1370 extends:
1371 - .test-gl
1372 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001373 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001374 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001375
1376.traces-test-vk:
1377 extends:
1378 - .test-vk
1379 - .traces-test
1380 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001381 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001382
1383llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001384 extends:
1385 - .traces-test-gl
1386 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001387 variables:
1388 LIBGL_ALWAYS_SOFTWARE: "true"
1389 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001390 DEVICE_NAME: "gl-vmware-llvmpipe"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001391 DRIVER_NAME: "llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001392
1393radv-polaris10-traces:
1394 extends:
1395 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001396 - .test-radv
1397 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001398 variables:
1399 DEVICE_NAME: "vk-amd-polaris10"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001400 DRIVER_NAME: "radv"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001401 tags:
1402 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001403
Andres Gomezb6b100c2020-04-24 19:32:42 +03001404radv-raven-traces:
1405 extends:
1406 - .traces-test-vk
1407 - .test-radv
1408 - .test-manual
1409 variables:
1410 DEVICE_NAME: "vk-amd-raven"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001411 DRIVER_NAME: "radv"
Andres Gomezb6b100c2020-04-24 19:32:42 +03001412 tags:
1413 - raven
1414
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001415virgl-traces:
1416 extends:
1417 - .traces-test-gl
1418 - .virgl-rules
1419 variables:
1420 LIBGL_ALWAYS_SOFTWARE: "true"
1421 GALLIUM_DRIVER: "virpipe"
1422 DEVICE_NAME: "gl-virgl"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +02001423 DRIVER_NAME: "virgl"
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001424 MESA_GLES_VERSION_OVERRIDE: "3.1"
1425 MESA_GLSL_VERSION_OVERRIDE: "310"