blob: ed6dabce0baa2487ee24bad5c9751ee45eb7cccf [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -08002 FDO_UPSTREAM_REPO: mesa/mesa
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +02003 CI_PRE_CLONE_SCRIPT: |-
4 set -o xtrace
5 /usr/bin/wget -q -O- ${CI_PROJECT_URL}/-/raw/${CI_COMMIT_SHA}/.gitlab-ci/download-git-cache.sh | sh -
6 set +o xtrace
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +02007
8include:
Eric Anholtaf7dca32020-03-06 13:23:20 -08009 - project: 'freedesktop/ci-templates'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020010 ref: &ci-templates-sha 52dd4a94044449c8481d18dcdc221a3c636366d2
Michel Dänzerd00b1c42019-04-02 16:56:54 +020011 file: '/templates/debian.yml'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020012 - project: 'freedesktop/ci-templates'
13 ref: *ci-templates-sha
14 file: '/templates/alpine.yml'
Dylan Baker19851c92019-10-23 14:36:19 -070015 - local: '.gitlab-ci/lava-gitlab-ci.yml'
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +010016 - local: '.gitlab-ci/test-source-dep.yml'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020017
Eric Engestrom329f5cd2019-01-20 11:21:45 +000018stages:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020019 - container+docs
Michel Dänzerc2366f02020-05-16 17:17:23 +020020 - container-2
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +020021 - git-archive
Michel Dänzer3cdc0d52020-07-01 17:37:49 +020022 - deploy
Michel Dänzercc9493f2020-02-27 18:27:56 +010023 - meson-x86_64
24 - scons
25 - meson-misc
26 - llvmpipe
27 - softpipe
28 - freedreno
29 - panfrost
Samuel Pitoiset48e92032020-03-06 08:39:25 +010030 - radv
31 - lima
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +020032 - virgl
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020033 - radeonsi
Michel Dänzer8775b742020-01-13 09:45:57 +010034 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000035
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020036# Generic rule to not run the job during scheduled pipelines
37# ----------------------------------------------------------
38.scheduled_pipelines-rules:
39 rules: &ignore_scheduled_pipelines
40 if: '$CI_PIPELINE_SOURCE == "schedule"'
41 when: never
42
Erik Faye-Lund87747072020-06-22 11:10:29 +020043.docs-base:
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020044 extends: .ci-run-policy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020045 image: alpine
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020046 script:
Erik Faye-Lundcb119002020-07-02 13:09:36 +020047 - apk --no-cache add py3-pip graphviz
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020048 - pip3 install sphinx sphinx_rtd_theme
49 - sphinx-build -b html docs public
Erik Faye-Lund87747072020-06-22 11:10:29 +020050
51pages:
52 extends: .docs-base
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020053 stage: deploy
Erik Faye-Lund064fe5f2019-05-27 17:12:10 +020054 artifacts:
55 paths:
56 - public
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020057 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020058 - *ignore_scheduled_pipelines
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020059 - if: '$CI_PROJECT_NAMESPACE == "mesa" && $CI_COMMIT_REF_NAME == "master"'
60 changes: &docs-or-ci
61 - docs/**/*
62 - .gitlab-ci.yml
Michel Dänzerfc41ec12020-07-01 17:41:06 +020063 when: always
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020064 # Other cases default to never
Eric Engestrom329f5cd2019-01-20 11:21:45 +000065
Erik Faye-Lund87747072020-06-22 11:10:29 +020066test-docs:
67 extends: .docs-base
Michel Dänzerd9693c62020-07-21 16:13:37 +020068 # Cancel job if a newer commit is pushed to the same branch
69 interruptible: true
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +020070 stage: container+docs
Michel Dänzer1c612e82020-06-22 11:13:05 +020071 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020072 - *ignore_scheduled_pipelines
Michel Dänzer1c612e82020-06-22 11:13:05 +020073 - if: '$CI_PROJECT_NAMESPACE == "mesa"'
74 when: never
Michel Dänzer3f865642020-07-15 10:59:54 +020075 - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
Michel Dänzer8e2cb8e2020-06-22 11:21:06 +020076 changes: *docs-or-ci
Michel Dänzer1c612e82020-06-22 11:13:05 +020077 when: on_success
78 - changes: *docs-or-ci
79 when: manual
80 # Other cases default to never
Erik Faye-Lund87747072020-06-22 11:10:29 +020081
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000082# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020083.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020084 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +020085 - *ignore_scheduled_pipelines
Michel Dänzer42fe6002020-04-03 12:50:11 +020086 # If any files affecting the pipeline are changed, build/test jobs run
87 # automatically once all dependency jobs have passed
88 - changes: &all_paths
Michel Dänzer8775b742020-01-13 09:45:57 +010089 - VERSION
Eric Engestrom576bff52020-05-14 22:51:38 +020090 - bin/git_sha1_gen.py
91 - bin/install_megadrivers.py
92 - bin/meson_get_version.py
93 - bin/symbols-check.py
Michel Dänzer8775b742020-01-13 09:45:57 +010094 # GitLab CI
95 - .gitlab-ci.yml
96 - .gitlab-ci/**/*
97 # Meson
98 - meson*
99 - build-support/**/*
100 - subprojects/**/*
101 # SCons
102 - SConstruct
103 - scons/**/*
104 - common.py
105 # Source code
106 - include/**/*
107 - src/**/*
108 when: on_success
Michel Dänzer42fe6002020-04-03 12:50:11 +0200109 # Otherwise, build/test jobs won't run
Michel Dänzer8775b742020-01-13 09:45:57 +0100110 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +0100111 retry:
112 max: 2
113 when:
114 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000115
Michel Dänzer8775b742020-01-13 09:45:57 +0100116success:
117 stage: success
118 image: debian:stable-slim
Michel Dänzer6cba4682020-06-22 11:16:17 +0200119 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200120 - *ignore_scheduled_pipelines
Michel Dänzer6cba4682020-06-22 11:16:17 +0200121 - if: '$CI_PROJECT_NAMESPACE == "mesa"'
122 when: never
123 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
124 changes: *docs-or-ci
125 when: never
126 - changes: *all_paths
127 when: never
128 - when: on_success
Michel Dänzer2dd0cc62020-01-20 18:34:34 +0100129 variables:
130 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +0100131 script:
132 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
133
134
Michel Dänzere426f402019-09-06 17:35:52 +0200135.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -0700136 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100137 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700138 when: always
139 untracked: false
140 paths:
141 # Watch out! Artifacts are relative to the build dir.
142 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
143 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +0000144
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100145# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +0100146#
Eric Anholtaf7dca32020-03-06 13:23:20 -0800147# 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 +0100148# image doesn't exist yet, the container stage job generates it.
149#
150# In order to generate a new image, one should generally change the tag.
151# While removing the image from the registry would also work, that's not
152# recommended except for ephemeral images during development: Replacing
153# an image after a significant amount of time might pull in newer
154# versions of gcc/clang or other packages, which might break the build
155# with older commits using the same tag.
156#
157# After merging a change resulting in generating a new image to the
158# main repository, it's recommended to remove the image from the source
159# repository's container registry, so that the image from the main
160# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200161
Eric Engestrom81b98e92019-10-14 23:04:14 +0100162.container:
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200163 stage: container+docs
Eric Engestrom81b98e92019-10-14 23:04:14 +0100164 extends:
165 - .ci-run-policy
Michel Dänzer42fe6002020-04-03 12:50:11 +0200166 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200167 - *ignore_scheduled_pipelines
Michel Dänzer549b4a32020-06-29 11:33:13 +0200168 # Run pipeline by default in the main project if any CI pipeline
169 # configuration files were changed, to ensure docker images are up to date
Michel Dänzer42fe6002020-04-03 12:50:11 +0200170 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
171 changes:
Michel Dänzer549b4a32020-06-29 11:33:13 +0200172 - .gitlab-ci.yml
173 - .gitlab-ci/**/*
174 when: on_success
175 # Run pipeline by default if it was triggered by Marge Bot, is for a
176 # merge request, and any files affecting the pipeline were changed
Michel Dänzercbdb87c2020-07-14 11:12:19 +0200177 - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
Michel Dänzer549b4a32020-06-29 11:33:13 +0200178 changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200179 *all_paths
180 when: on_success
Michel Dänzer549b4a32020-06-29 11:33:13 +0200181 # Run pipeline by default in the main project if it was not triggered by
182 # Marge Bot, and any files affecting the pipeline were changed
183 - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_PROJECT_PATH == "mesa/mesa"'
184 changes:
185 *all_paths
186 when: on_success
187 # Allow triggering jobs manually in other cases if any files affecting the
188 # pipeline were changed
Michel Dänzer4176dfa2020-04-03 11:46:12 +0200189 - changes:
Michel Dänzer42fe6002020-04-03 12:50:11 +0200190 *all_paths
191 when: manual
192 # Otherwise, container jobs won't run
193 - when: never
Eric Engestrom81b98e92019-10-14 23:04:14 +0100194 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800195 FDO_DISTRIBUTION_VERSION: buster-slim
Michel Dänzerfcd33772020-03-23 18:16:07 +0100196 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
Eric Anholtfd24a952020-06-26 10:59:41 -0700197 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 +0100198 # no need to pull the whole repo to build the container image
199 GIT_STRATEGY: none
200
Michel Dänzera85da8e2020-05-30 15:53:41 +0200201# Debian 10 based x86 build image base
202x86_build-base:
Michel Dänzere426f402019-09-06 17:35:52 +0200203 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100204 - .fdo.container-build@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100205 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100206 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200207 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-07-28-x86-2"
Michel Dänzera85da8e2020-05-30 15:53:41 +0200208
209.use-x86_build-base:
210 extends:
211 - x86_build-base
212 - .ci-run-policy
213 stage: container-2
214 variables:
215 BASE_TAG: *x86_build-base
216 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
217 needs:
218 - x86_build-base
219
220# Debian 10 based x86 main build image
221x86_build:
222 extends:
223 - .use-x86_build-base
224 variables:
Eric Engestromdd003ab2020-01-09 15:10:53 +0000225 FDO_DISTRIBUTION_TAG: &x86_build "2020-08-08-glvnd"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000226
Michel Dänzer3a48f452019-11-13 17:43:41 +0100227.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100228 variables:
229 TAG: *x86_build
230 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200231 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100232 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200233
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200234# Debian 10 based i386 cross-build image
235i386_build:
236 extends:
237 - .use-x86_build-base
238 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200239 FDO_DISTRIBUTION_TAG: &i386_build "2020-07-28-x86-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200240
241.use-i386_build:
242 variables:
243 TAG: *i386_build
244 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
245 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200246 - i386_build
247
248# Debian 10 based ppc64el cross-build image
249ppc64el_build:
250 extends:
251 - .use-x86_build-base
252 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200253 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-07-28-x86-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200254
255.use-ppc64el_build:
256 variables:
257 TAG: *ppc64el_build
258 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
259 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200260 - ppc64el_build
261
262# Debian 10 based s390x cross-build image
263s390x_build:
264 extends:
265 - .use-x86_build-base
266 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200267 FDO_DISTRIBUTION_TAG: &s390x_build "2020-07-28-x86-2"
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200268
269.use-s390x_build:
270 variables:
271 TAG: *s390x_build
272 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
273 needs:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200274 - s390x_build
275
Michel Dänzerc2366f02020-05-16 17:17:23 +0200276# Debian 10 based x86 test image base
277x86_test-base:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200278 extends: x86_build-base
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100279 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200280 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-07-28-x86-2"
Michel Dänzerc2366f02020-05-16 17:17:23 +0200281
282.use-x86_test-base:
283 extends:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200284 - x86_build-base
Michel Dänzerc2366f02020-05-16 17:17:23 +0200285 - .ci-run-policy
286 stage: container-2
287 variables:
288 BASE_TAG: *x86_test-base
289 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
290 needs:
291 - x86_test-base
292
293# Debian 10 based x86 test image for GL
294x86_test-gl:
295 extends: .use-x86_test-base
296 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200297 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-07-28-x86-2"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100298
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100299# Debian 10 based x86 test image for VK
300x86_test-vk:
Michel Dänzerc2366f02020-05-16 17:17:23 +0200301 extends: .use-x86_test-base
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100302 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200303 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-07-28-x86-2"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100304
Michel Dänzerc6c76522019-11-11 18:13:28 +0100305# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100306x86_build_old:
Michel Dänzera85da8e2020-05-30 15:53:41 +0200307 extends: x86_build-base
Michel Dänzer8a199922019-09-06 17:04:47 +0200308 variables:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200309 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-07-28-x86-2"
Eric Anholtaf7dca32020-03-06 13:23:20 -0800310 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200311
Michel Dänzer3a48f452019-11-13 17:43:41 +0100312.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100313 variables:
314 TAG: *x86_build_old
315 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200316 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100317 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200318
Michel Dänzerc6c76522019-11-11 18:13:28 +0100319# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100320arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200321 extends:
Michel Dänzerfcd33772020-03-23 18:16:07 +0100322 - .fdo.container-build@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100323 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700324 variables:
Tomeu Vizoso1541ef62020-07-28 11:42:42 +0200325 FDO_DISTRIBUTION_TAG: &arm_build "2020-08-04-nfs-2"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000326
Michel Dänzerc6c76522019-11-11 18:13:28 +0100327.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100328 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100329 TAG: *arm_build
330 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
331 needs:
332 - arm_build
333
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200334# Debian 10 based x86 baremetal image base
335arm_test-base:
336 extends:
337 - .fdo.container-build@debian
338 - .container
339 variables:
Tomeu Vizoso5d0ba8b2020-07-27 14:42:42 +0200340 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-07-28-libdrm"
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200341
342.use-arm_test-base:
343 extends:
344 - arm_test-base
345 - .ci-run-policy
346 stage: container-2
347 variables:
348 BASE_TAG: *arm_test-base
349 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
350 needs:
351 - arm_test-base
352
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200353# x86 image with ARM64 rootfs for baremetal testing.
354arm64_test:
Christian Gmeiner408b36a2020-06-07 22:03:34 +0200355 extends:
356 - .use-arm_test-base
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700357 variables:
Tomeu Vizoso1541ef62020-07-28 11:42:42 +0200358 FDO_DISTRIBUTION_TAG: &arm64_test "2020-08-04-nfs-2"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700359
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200360.use-arm64_test:
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700361 variables:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200362 TAG: *arm64_test
363 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700364 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +0200365 - arm64_test
Eric Anholt68b3b5b2020-05-13 11:08:08 -0700366
Daniel Stone07885cb2020-03-24 11:11:36 +0000367# Native Windows docker builds
Dylan Baker138c0032020-05-19 14:01:47 -0700368#
Daniel Stone07885cb2020-03-24 11:11:36 +0000369# Unlike the above Linux-based builds - including MinGW/SCons builds which
370# cross-compile for Windows - which use the freedesktop ci-templates, we
371# cannot use the same scheme here. As Windows lacks support for
372# Docker-in-Docker, and Podman does not run natively on Windows, we have
373# to open-code much of the same ourselves.
374#
375# This is achieved by first running in a native Windows shell instance
376# (host PowerShell) in the container stage to build and push the image,
377# then in the build stage by executing inside Docker.
378
379.windows-docker-vs2019:
380 variables:
Daniel Stone0f46a312020-05-05 15:49:22 +0100381 WINDOWS_TAG: "2020-05-05-llvm"
Daniel Stone07885cb2020-03-24 11:11:36 +0000382 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
383 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
384
Daniel Stoneefec8332020-07-02 08:21:33 +0100385.windows_build_vs2019:
Daniel Stone07885cb2020-03-24 11:11:36 +0000386 extends:
387 - .container
388 - .windows-docker-vs2019
Erik Faye-Lund196ac4c2020-06-22 11:10:40 +0200389 stage: container+docs
Daniel Stone07885cb2020-03-24 11:11:36 +0000390 variables:
391 GIT_STRATEGY: fetch # we do actually need the full repository though
Daniel Stone0f46a312020-05-05 15:49:22 +0100392 timeout: 4h # LLVM takes ages
Daniel Stone07885cb2020-03-24 11:11:36 +0000393 tags:
394 - windows
395 - shell
396 - "1809"
Daniel Stone2db1d732020-03-30 10:16:18 +0100397 - mesa
Daniel Stone07885cb2020-03-24 11:11:36 +0000398 script:
399 - .\.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 -0700400
Daniel Stone07885cb2020-03-24 11:11:36 +0000401.use-windows_build_vs2019:
402 extends: .windows-docker-vs2019
403 image: "$WINDOWS_IMAGE"
404 needs:
Daniel Stone79113462020-04-16 14:56:18 +0100405 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100406
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200407git_archive:
408 extends: .fdo.container-build@alpine
409 stage: container+docs
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200410 rules:
411 - if: '$CI_PIPELINE_SOURCE == "schedule"'
412 when: always
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200413 variables:
414 FDO_REPO_SUFFIX: &git-archive-suffix "alpine/git_archive"
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200415 FDO_DISTRIBUTION_EXEC: 'pip3 install git+http://gitlab.freedesktop.org/freedesktop/ci-templates@6f5af7e5574509726c79109e3c147cee95e81366'
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200416 # no need to pull the whole repo to build the container image
417 GIT_STRATEGY: none
Benjamin Tissoires1639d3c2020-07-07 14:44:33 +0200418 FDO_DISTRIBUTION_TAG: &git-archive-tag "2020-07-07"
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200419 FDO_DISTRIBUTION_PACKAGES: git py3-pip
420
421
422# Git archive
423
424make git archive:
425 stage: git-archive
426 extends: .fdo.suffixed-image@alpine
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +0200427 rules:
428 - if: '$CI_PIPELINE_SOURCE == "schedule"'
429 when: on_success
Benjamin Tissoires0b6e03b2020-06-11 17:16:28 +0200430 # ensure we are running on packet
431 tags:
432 - packet.net
433 variables:
434 FDO_DISTRIBUTION_TAG: *git-archive-tag
435 FDO_REPO_SUFFIX: *git-archive-suffix
436 needs:
437 - git_archive
438
439 script:
440 # compress the current folder
441 - tar -cvzf ../$CI_PROJECT_NAME.tar.gz .
442
443 # login with the JWT token
444 - ci-fairy minio login $CI_JOB_JWT
445 - 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
446
447
Eric Engestrom46d23c02019-01-20 11:26:53 +0000448# BUILD
449
Dylan Baker06e46472019-10-23 14:21:31 -0700450# Shared between windows and Linux
451.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100452 extends: .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200453 # Cancel job if a newer commit is pushed to the same branch
454 interruptible: true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000455 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100456 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700457 when: always
458 paths:
459 - _build/meson-logs/*.txt
460 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200461 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700462 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700463
464# Just Linux
465.build-linux:
466 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200467 variables:
468 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100469 CCACHE_COMPRESS: "true"
470 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000471 # Use ccache transparently, and print stats before/after
472 before_script:
473 - export PATH="/usr/lib/ccache:$PATH"
474 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100475 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000476 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000477 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000478
Dylan Baker19851c92019-10-23 14:36:19 -0700479.build-windows:
480 extends: .build-common
481 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000482 - windows
483 - docker
484 - "1809"
Daniel Stone9197fd52020-03-30 15:58:51 +0100485 - mesa
Dylan Baker19851c92019-10-23 14:36:19 -0700486 cache:
487 key: ${CI_JOB_NAME}
488 paths:
489 - subprojects/packagecache
490
Eric Engestrom46d23c02019-01-20 11:26:53 +0000491.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100492 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700493 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100494 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100495 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100496 variables:
497 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000498 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200499 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000500
Eric Engestrom06b245b2019-01-23 15:46:10 +0000501.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100502 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700503 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100504 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100505 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000506 script:
Eric Anholtfd24a952020-06-26 10:59:41 -0700507 - env SCONSFLAGS="-j${FDO_CI_CONCURRENT:-4}" .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000508
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100509meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200510 extends:
511 - .meson-build
512 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200513 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700514 UNWIND: "enabled"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200515 DRI_LOADERS: >
516 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700517 -D gbm=enabled
518 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100519 -D platforms=x11
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100520 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700521 -D dri3=enabled
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200522 GALLIUM_DRIVERS: "swrast,virgl,radeonsi"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100523 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100524 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800525 EXTRA_OPTION: >
526 -D werror=true
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200527 UPLOAD_FOR_LAVA: 1
528 DEBIAN_ARCH: amd64
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100529 script:
530 - .gitlab-ci/meson-build.sh
531 - .gitlab-ci/prepare-artifacts.sh
532
Michel Dänzerc56f0912020-03-12 12:29:40 +0100533meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100534 extends: .meson-build
535 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700536 UNWIND: "enabled"
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100537 DRI_LOADERS: >
538 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700539 -D gbm=enabled
540 -D egl=enabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100541 -D platforms=x11,wayland
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200542 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700543 -D dri3=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200544 -D gallium-extra-hud=true
Dylan Baker138c0032020-05-19 14:01:47 -0700545 -D gallium-vdpau=enabled
546 -D gallium-xvmc=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200547 -D gallium-omx=bellagio
Dylan Baker138c0032020-05-19 14:01:47 -0700548 -D gallium-va=enabled
549 -D gallium-xa=enabled
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200550 -D gallium-nine=true
551 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100552 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 +1000553 VULKAN_DRIVERS: swrast
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200554 EXTRA_OPTION: >
555 -D osmesa=gallium
556 -D tools=all
Timothy Arceri1af1eb92020-07-08 13:56:51 +1000557 -D werror=true
Michel Dänzer59fcb012019-10-23 18:42:53 +0200558 script:
559 - .gitlab-ci/meson-build.sh
560 - .gitlab-ci/run-shader-db.sh
Rob Clarkddcee242020-07-24 10:34:47 -0700561 - src/freedreno/.gitlab-ci/run-fdtools.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200562
Michel Dänzerc56f0912020-03-12 12:29:40 +0100563meson-classic:
564 extends: .meson-build
565 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700566 UNWIND: "enabled"
Michel Dänzerc56f0912020-03-12 12:29:40 +0100567 DRI_LOADERS: >
568 -D glx=dri
Dylan Baker138c0032020-05-19 14:01:47 -0700569 -D gbm=enabled
570 -D egl=enabled
Michel Dänzerc56f0912020-03-12 12:29:40 +0100571 -D platforms=x11,wayland,drm,surfaceless
572 DRI_DRIVERS: "auto"
573 EXTRA_OPTION: >
574 -D osmesa=classic
575 -D tools=all
Timothy Arceria1b89db2020-07-03 13:10:09 +1000576 -D werror=true
Michel Dänzerc56f0912020-03-12 12:29:40 +0100577
Kristian H. Kristensen879444a2020-07-28 15:35:36 -0700578meson-android:
579 extends: .meson-build
580 variables:
581 UNWIND: "disabled"
582 DRI_LOADERS: >
583 -D glx=disabled
584 -D gbm=disabled
585 -D egl=enabled
586 -D platforms=android
587 GALLIUM_DRIVERS: freedreno
588 VULKAN_DRIVERS: freedreno,intel,amd
589 EXTRA_OPTION: >
590 -D android-stub=true
591 -D werror=true
592 GALLIUM_ST: >
593 -D dri3=disabled
594 -D gallium-vdpau=disabled
595 -D gallium-xvmc=disabled
596 -D gallium-omx=disabled
597 -D gallium-va=disabled
598 -D gallium-xa=disabled
599 -D gallium-nine=false
600 -D gallium-opencl=disabled
601
Michel Dänzere5364462019-09-13 11:59:43 +0200602.meson-cross:
603 extends:
604 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100605 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200606 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700607 UNWIND: "disabled"
Michel Dänzere5364462019-09-13 11:59:43 +0200608 DRI_LOADERS: >
609 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700610 -D gbm=disabled
611 -D egl=enabled
Eric Engestroma38e21d2019-06-25 13:47:04 +0100612 -D platforms=[]
Michel Dänzere5364462019-09-13 11:59:43 +0200613 -D osmesa=none
614 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700615 -D dri3=disabled
616 -D gallium-vdpau=disabled
617 -D gallium-xvmc=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200618 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700619 -D gallium-va=disabled
620 -D gallium-xa=disabled
Michel Dänzere5364462019-09-13 11:59:43 +0200621 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100622 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200623
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200624.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100625 extends:
626 - .meson-cross
627 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200628 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200629 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200630 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100631 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200632 tags:
633 - aarch64
634
635meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100636 extends:
637 - .meson-arm
638 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200639 variables:
640 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200641 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800642 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700643 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200644 UPLOAD_FOR_LAVA: 1
645 DEBIAN_ARCH: armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100646 script:
647 - .gitlab-ci/meson-build.sh
648 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200649
650meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200651 extends:
652 - .meson-arm
653 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200654 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100655 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800656 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700657 -D llvm=disabled
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200658 UPLOAD_FOR_LAVA: 1
659 DEBIAN_ARCH: arm64
Michel Dänzer59fcb012019-10-23 18:42:53 +0200660 script:
661 - .gitlab-ci/meson-build.sh
662 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200663
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100664meson-arm64-build-test:
665 extends:
666 - .meson-arm
667 - .ci-deqp-artifacts
668 variables:
669 VULKAN_DRIVERS: "amd"
Tomeu Vizosoa9560932020-08-03 16:19:38 +0200670 EXTRA_OPTION: >
671 -Dtools=panfrost
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100672 script:
673 - .gitlab-ci/meson-build.sh
674
Michel Dänzera2cce702019-03-20 15:58:31 +0100675meson-clang:
676 extends: .meson-build
677 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700678 UNWIND: "enabled"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100679 DRI_LOADERS: >
680 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100681 DRI_DRIVERS: "auto"
682 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100683 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100684 CC: "ccache clang-9"
685 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100686
Daniel Stoneefec8332020-07-02 08:21:33 +0100687.meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700688 extends:
689 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000690 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100691 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700692 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000693 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700694
Michel Dänzer82b30092019-05-03 18:19:25 +0200695scons-win64:
696 extends: .scons-build
697 variables:
Jose Fonseca27d58a12020-03-28 10:36:28 +0000698 SCONS_TARGET: platform=windows machine=x86_64 debug=1
Michel Dänzer82b30092019-05-03 18:19:25 +0200699 SCONS_CHECK_COMMAND: "true"
Jose Fonseca27d58a12020-03-28 10:36:28 +0000700 allow_failure: true
Eric Engestrom89a74672019-01-21 09:42:37 +0000701
Michel Dänzer68977152019-05-03 10:58:48 +0200702meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000703 extends: .meson-build
704 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700705 UNWIND: "enabled"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000706 DRI_LOADERS: >
707 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700708 -D egl=disabled
709 -D gbm=disabled
Michel Dänzer262e3882020-05-30 23:55:28 +0200710 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestromb5a70af2019-01-28 18:05:22 +0000711 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700712 -D dri3=disabled
713 -D gallium-vdpau=disabled
714 -D gallium-xvmc=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000715 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700716 -D gallium-va=disabled
717 -D gallium-xa=disabled
Eric Engestromb5a70af2019-01-28 18:05:22 +0000718 -D gallium-nine=false
719 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200720 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200721 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200722 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200723
724meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200725 extends:
726 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100727 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200728 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700729 UNWIND: "disabled"
Michel Dänzer8a199922019-09-06 17:04:47 +0200730 DRI_LOADERS: >
731 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700732 -D egl=disabled
733 -D gbm=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100734 -D platforms=[]
Michel Dänzer8a199922019-09-06 17:04:47 +0200735 GALLIUM_DRIVERS: "i915,r600"
736 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200737 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
738 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
739 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Michel Dänzer262e3882020-05-30 23:55:28 +0200740 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
741 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000742
Michel Dänzer82b30092019-05-03 18:19:25 +0200743meson-vulkan:
744 extends: .meson-build
745 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700746 UNWIND: "disabled"
Michel Dänzer82b30092019-05-03 18:19:25 +0200747 DRI_LOADERS: >
748 -D glx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700749 -D gbm=disabled
750 -D egl=disabled
Eric Engestrome00adef2019-06-25 15:44:16 +0100751 -D platforms=x11,wayland
Michel Dänzer82b30092019-05-03 18:19:25 +0200752 -D osmesa=none
753 GALLIUM_ST: >
Dylan Baker138c0032020-05-19 14:01:47 -0700754 -D dri3=enabled
755 -D gallium-vdpau=disabled
756 -D gallium-xvmc=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200757 -D gallium-omx=disabled
Dylan Baker138c0032020-05-19 14:01:47 -0700758 -D gallium-va=disabled
759 -D gallium-xa=disabled
Michel Dänzer82b30092019-05-03 18:19:25 +0200760 -D gallium-nine=false
761 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200762 -D b_sanitize=undefined
763 -D c_args=-fno-sanitize-recover=all
764 -D cpp_args=-fno-sanitize-recover=all
765 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200766 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200767 EXTRA_OPTION: >
768 -D vulkan-overlay-layer=true
Rhys Perry54394a42020-06-03 14:25:12 +0100769 -D build-aco-tests=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800770 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200771
Eric Anholt11aa32a2019-07-11 12:58:28 -0700772meson-i386:
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200773 extends:
774 - .meson-cross
775 - .use-i386_build
Eric Anholt11aa32a2019-07-11 12:58:28 -0700776 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100777 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100778 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100779 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700780 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700781 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800782 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700783
Michel Dänzer65610ec2020-01-30 18:21:15 +0100784meson-s390x:
785 extends:
786 - .meson-cross
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200787 - .use-s390x_build
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100788 tags:
789 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100790 variables:
791 CROSS: s390x
Michel Dänzer6c99de982020-05-23 16:07:53 +0200792 EXTRA_OPTION: >
793 -D werror=true
Michel Dänzer65610ec2020-01-30 18:21:15 +0100794 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100795
796meson-ppc64el:
797 extends:
798 - meson-s390x
Michel Dänzer3acd5a62020-06-01 19:08:30 +0200799 - .use-ppc64el_build
Michel Dänzer65610ec2020-01-30 18:21:15 +0100800 variables:
801 CROSS: ppc64el
Michel Dänzer6c99de982020-05-23 16:07:53 +0200802 EXTRA_OPTION: ""
Michel Dänzer8be81f82020-01-31 16:07:10 +0100803 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100804 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100805
Dylan Baker449f8312019-10-11 09:04:14 -0700806meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700807 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100808 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700809 variables:
Dylan Baker138c0032020-05-19 14:01:47 -0700810 UNWIND: "disabled"
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700811 DRI_DRIVERS: ""
812 GALLIUM_DRIVERS: "swrast"
813 EXTRA_OPTION: >
Dylan Baker138c0032020-05-19 14:01:47 -0700814 -Dllvm=disabled
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700815 -Dosmesa=gallium
816 --cross-file=.gitlab-ci/x86_64-w64-mingw32
817
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100818.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200819 extends:
820 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +0200821 # Cancel job if a newer commit is pushed to the same branch
822 interruptible: true
Eric Anholt46daaca2019-06-28 16:35:32 -0700823 variables:
824 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200825 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700826 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
827 - rm -rf install
828 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100829 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700830 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800831 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100832 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700833 paths:
834 - results/
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100835
836.test-gl:
837 extends:
838 - .test
839 variables:
840 TAG: *x86_test-gl
841 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200842 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100843 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100844 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700845
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100846.test-vk:
847 extends:
848 - .test
849 variables:
850 TAG: *x86_test-vk
851 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
852 needs:
853 - meson-testing
854 - x86_test-vk
855
Michel Dänzer576f7b62019-10-22 17:16:52 +0200856.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100857 extends:
858 - .test-gl
859 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100860 artifacts:
861 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100862 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100863 paths:
864 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200865 variables:
866 LIBGL_ALWAYS_SOFTWARE: 1
867 PIGLIT_NO_WINDOW: 1
868 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100869 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200870
871piglit-quick_gl:
872 extends: .piglit-test
873 variables:
874 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000875 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200876 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100877 --process-isolation false
Eric Anholt3097efe2019-12-04 16:13:38 -0800878 -x egl_ext_device_
879 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800880 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200881 -x glx-multithread-clearbuffer
882 -x glx-multithread-shader-compile
883 -x max-texture-size
884 -x maxsize
885 PIGLIT_PROFILES: quick_gl
886
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100887piglit-glslparser:
888 extends: .piglit-test
889 variables:
890 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000891 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100892 PIGLIT_PROFILES: glslparser
893
894piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200895 extends: .piglit-test
896 variables:
897 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000898 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100899 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200900
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100901.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200902 variables:
903 DEQP_SKIPS: deqp-default-skips.txt
904 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100905 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200906
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100907.deqp-test-gl:
908 extends:
909 - .test-gl
910 - .deqp-test
911
912.deqp-test-vk:
913 extends:
914 - .test-vk
915 - .deqp-test
916 variables:
917 DEQP_VER: vk
918
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100919.fossilize-test:
920 extends: .test-vk
921 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100922 - ./install/fossilize-runner.sh
Samuel Pitoiset276e6d72020-06-25 11:21:12 +0200923 artifacts:
924 when: on_failure
925 name: "mesa_${CI_JOB_NAME}"
926 paths:
927 - results/
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100928
Michel Dänzer71436f92020-03-03 18:17:12 +0100929llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700930 variables:
931 DEQP_VER: gles2
Dave Airliee6b2af52019-12-03 15:23:45 +1000932 NIR_VALIDATE: 0
Eric Anholtfd24a952020-06-26 10:59:41 -0700933 # Don't use threads inside llvmpipe, we've already got all cores
934 # busy at the deqp-runner level.
Eric Anholtf08c8102019-11-04 10:54:41 -0800935 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700936 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
937 LIBGL_ALWAYS_SOFTWARE: "true"
Eric Anholt8b221e02020-04-17 12:39:32 -0700938 DEQP_EXPECTED_RENDERER: llvmpipe
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100939 extends:
940 - .deqp-test-gl
941 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700942
Michel Dänzer71436f92020-03-03 18:17:12 +0100943softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100944 extends:
945 - llvmpipe-gles2
946 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700947 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700948 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800949 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700950 GALLIUM_DRIVER: "softpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -0700951 DEQP_EXPECTED_RENDERER: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -0700952
Michel Dänzer71436f92020-03-03 18:17:12 +0100953softpipe-gles3:
Eric Anholt553cd822019-08-09 10:32:40 -0700954 variables:
955 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +0100956 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -0800957
Michel Dänzer71436f92020-03-03 18:17:12 +0100958softpipe-gles31:
Michel Dänzer589d8662020-07-21 16:36:28 +0200959 parallel: 2
Eric Anholt52843ec2019-11-05 10:31:29 -0800960 variables:
961 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +0100962 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700963
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200964virgl-gles2-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200965 variables:
966 DEQP_VER: gles2
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200967 NIR_VALIDATE: 0
968 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtfd24a952020-06-26 10:59:41 -0700969 # Don't use threads inside llvmpipe, we've already got all cores
970 # busy at the deqp-runner level.
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200971 LP_NUM_THREADS: 0
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200972 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
973 DEQP_OPTIONS: "--deqp-log-images=disable"
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200974 LIBGL_ALWAYS_SOFTWARE: "true"
975 GALLIUM_DRIVER: "virpipe"
Eric Anholt8b221e02020-04-17 12:39:32 -0700976 DEQP_EXPECTED_RENDERER: virgl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200977 extends:
978 - .deqp-test-gl
979 - .virgl-rules
980
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200981virgl-gles3-on-gl:
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200982 variables:
983 DEQP_VER: gles3
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200984 DEQP_RUNNER_OPTIONS: "--timeout 180"
985 extends: virgl-gles2-on-gl
Tomeu Vizosoad3ef6d2020-04-01 09:17:25 +0200986
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200987virgl-gles31-on-gl:
Michel Dänzer589d8662020-07-21 16:36:28 +0200988 parallel: 2
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +0200989 variables:
990 DEQP_VER: gles31
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +0200991 MESA_GLES_VERSION_OVERRIDE: "3.1"
992 MESA_GLSL_VERSION_OVERRIDE: "310"
Dave Airliec8c74502020-06-04 12:10:40 +1000993 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +0200994 extends: virgl-gles3-on-gl
Tomeu Vizoso5a5316e2020-04-21 14:51:59 +0200995
Tomeu Vizoso287bf5f2020-05-13 09:46:06 +0200996virgl-gl30-on-gl:
997 variables:
998 DEQP_VER: gl30
999 extends: virgl-gles2-on-gl
1000
1001virgl-gl31-on-gl:
1002 variables:
1003 DEQP_VER: gl31
1004 extends: virgl-gles2-on-gl
1005
1006virgl-gl32-on-gl:
1007 variables:
1008 DEQP_VER: gl32
1009 extends: virgl-gles2-on-gl
1010
Eric Anholt8edaa842020-03-19 11:45:01 -07001011# Rules for tests that should not be present in MRs or the main
1012# project's pipeline (don't block marge or report red on
1013# mesa/mesamaster) but should be present on pipelines in personal
1014# branches (so you can opt in to running the flaky test when you want
1015# to).
1016.test-manual:
1017 rules:
Benjamin Tissoires1a3eb432020-07-07 15:02:35 +02001018 - *ignore_scheduled_pipelines
Michel Dänzer6a8e5dd2020-04-11 15:32:02 +02001019 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
1020 changes:
1021 *all_paths
1022 when: manual
1023 - when: never
Eric Anholt8edaa842020-03-19 11:45:01 -07001024
Tomeu Vizoso2102d5e2020-05-12 10:18:48 +02001025virgl-gles2-on-gles:
1026 variables:
1027 VIRGL_HOST_API: GLES
1028 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1029 extends:
1030 - virgl-gles2-on-gl
1031 - .test-manual
1032
1033virgl-gles3-on-gles:
1034 variables:
1035 VIRGL_HOST_API: GLES
1036 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1037 extends:
1038 - virgl-gles3-on-gl
1039 - .test-manual
1040
1041virgl-gles31-on-gles:
1042 variables:
1043 VIRGL_HOST_API: GLES
1044 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1045 extends:
1046 - virgl-gles31-on-gl
1047 - .test-manual
1048
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001049arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +01001050 extends:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001051 - arm64_a306_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001052 variables:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001053 BM_KERNEL: /lava-files/cheza-kernel
1054 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 -07001055 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
1056 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
Eric Anholt72fe7b92020-06-08 15:36:16 -07001057 GIT_STRATEGY: none
Eric Anholt8b221e02020-04-17 12:39:32 -07001058 DEQP_EXPECTED_RENDERER: FD630
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001059 DEQP_NO_SAVE_RESULTS: ""
Eric Anholt6f0dc082019-06-28 16:35:32 -07001060 tags:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001061 - google-freedreno-cheza
1062 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001063 - ./install/bare-metal/cros-servo.sh
Eric Anholt6f0dc082019-06-28 16:35:32 -07001064
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001065arm64_a630_gles31:
1066 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001067 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +02001068 DEQP_VER: gles31
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001069 # gles31 is about 12 minutes with validation enabled.
1070 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001071
Fritz Koenig2a98cf32020-02-12 19:31:24 +00001072arm64_a630_gles3:
1073 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -07001074 variables:
1075 DEQP_VER: gles3
Eric Anholtd9f7fce2020-06-18 12:55:41 -07001076 # gles3 is about 15 minutes with validation enabled.
1077 NIR_VALIDATE: 0
Eric Anholt6f0dc082019-06-28 16:35:32 -07001078
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001079# We almost always manage to lower UBOs back to constant uploads in
1080# the test suite, so get a little testing for it here.
Rob Clarke5169b12020-07-16 14:20:22 -07001081arm64_a630_noubo:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001082 extends: arm64_a630_gles31
Eric Anholt5082ac02020-04-17 12:02:37 -07001083 variables:
1084 DEQP_VER: gles31
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001085 IR3_SHADER_DEBUG: nouboopt
1086 DEQP_CASELIST_FILTER: "functional.*ubo"
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001087
1088# The driver does some guessing as to whether to render using gmem
1089# or bypass, and some GLES3.1 features interact with either one.
1090# Do a little testing with gmem and bypass forced.
Rob Clarke5169b12020-07-16 14:20:22 -07001091arm64_a630_bypass:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001092 extends: arm64_a630_gles31
1093 variables:
Eric Anholt5082ac02020-04-17 12:02:37 -07001094 CI_NODE_INDEX: 1
1095 CI_NODE_TOTAL: 5
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001096 FD_MESA_DEBUG: nogmem
1097 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1098
Rob Clarke5169b12020-07-16 14:20:22 -07001099arm64_a630_traces:
Eric Anholtb88c46f2020-06-08 14:51:59 -07001100 extends:
1101 - arm64_a630_gles2
1102 variables:
1103 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1104 DEVICE_NAME: "freedreno-a630"
1105 TRACIE_NO_UNIT_TESTS: 1
Tomeu Vizosod4ca45e2020-07-31 08:13:15 +02001106 TRACIE_UPLOAD_TO_MINIO: 1
Eric Anholtb88c46f2020-06-08 14:51:59 -07001107 # This lets us run several more traces which don't use any features we're
1108 # missing.
1109 MESA_GLSL_VERSION_OVERRIDE: "460"
1110 MESA_GL_VERSION_OVERRIDE: "4.6"
Eric Anholtb88c46f2020-06-08 14:51:59 -07001111
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001112# Along with checking gmem path, check that we don't get obvious nir
1113# validation failures (though it's too expensive to have it on for the
1114# full CTS)
Rob Clarke5169b12020-07-16 14:20:22 -07001115arm64_a630_gmem:
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001116 extends: arm64_a630_gles31
1117 variables:
1118 CI_NODE_INDEX: 1
1119 CI_NODE_TOTAL: 5
1120 FD_MESA_DEBUG: nobypass
1121 NIR_VALIDATE: 1
Eric Anholt5082ac02020-04-17 12:02:37 -07001122
Jonathan Marekbe33d582020-07-14 10:58:56 -04001123arm64_a630_vk:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001124 extends: arm64_a630_gles2
1125 variables:
1126 DEQP_VER: vk
1127 CI_NODE_INDEX: 1
1128 CI_NODE_TOTAL: 50
1129 VK_DRIVER: freedreno
1130 # Force binning in the main run, which makes sure we render at
1131 # least 2 bins. This is the path that impacts the most different
1132 # features. However, we end up with flaky results in
1133 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1134 TU_DEBUG: forcebin
1135
1136# Do a separate sysmem pass over the testcases that really affect sysmem
1137# rendering. This is currently very flaky, leave it as an option for devs
1138# to click play on in their branches.
Rob Clarke5169b12020-07-16 14:20:22 -07001139arm64_a630_vk_sysmem:
Eric Anholt9e11cce2020-05-25 12:57:25 -07001140 extends:
Jonathan Marekbe33d582020-07-14 10:58:56 -04001141 - arm64_a630_vk
Eric Anholt9e11cce2020-05-25 12:57:25 -07001142 variables:
1143 CI_NODE_INDEX: 1
1144 CI_NODE_TOTAL: 10
1145 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1146 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1147 TU_DEBUG: sysmem
1148
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001149.baremetal-test:
1150 extends:
1151 - .ci-run-policy
Eric Anholt109816b2020-06-08 15:09:51 -07001152 - .test
Michel Dänzerd9693c62020-07-21 16:13:37 +02001153 # Cancel job if a newer commit is pushed to the same branch
1154 interruptible: true
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001155 stage: test
Eric Anholt6f4fc4f2020-05-15 11:22:37 -07001156 artifacts:
1157 when: always
1158 name: "mesa_${CI_JOB_NAME}"
1159 paths:
1160 - results/
1161 - serial*.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001162
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001163arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001164 extends:
1165 - .baremetal-test
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001166 - .use-arm64_test
Eric Anholtf778c482020-03-18 09:51:03 -07001167 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001168 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -08001169 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001170 BM_DTB: /lava-files/apq8016-sbc.dtb
1171 BM_ROOTFS: /lava-files/rootfs-arm64
1172 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholt3b5e71c2020-05-01 09:57:00 -07001173 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt109816b2020-06-08 15:09:51 -07001174 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001175 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001176 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
1177 DEQP_VER: gles2
1178 DEQP_PARALLEL: 4
Eric Anholt8b221e02020-04-17 12:39:32 -07001179 DEQP_EXPECTED_RENDERER: FD307
Eric Anholt46d9b502020-05-22 15:48:55 -07001180 # Since we can't get artifacts back yet, skip making them.
1181 DEQP_NO_SAVE_RESULTS: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001182 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001183 script:
Eric Anholt72fe7b92020-06-08 15:36:16 -07001184 - ./install/bare-metal/fastboot.sh
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001185 needs:
Christian Gmeiner839bc2d2020-06-07 23:19:50 +02001186 - arm64_test
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001187 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001188 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001189 - google-freedreno-db410c
1190
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001191# Fractional run, single threaded, due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -07001192arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001193 extends:
1194 - arm64_a306_gles2
Eric Anholtcf5ba9d2020-03-03 14:38:09 -08001195 variables:
1196 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001197 DEQP_PARALLEL: 1
1198 CI_NODE_INDEX: 1
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001199 CI_NODE_TOTAL: 25
1200 NIR_VALIDATE: 0
Eric Anholtaea8c9c2020-03-03 11:44:45 -08001201
Eric Anholtae442c32020-05-15 16:15:07 -07001202# Fractional runs with debug options. Note that since we're not
1203# hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1204arm64_a306_gles3_options:
1205 extends: arm64_a306_gles2
1206 variables:
1207 DEQP_VER: gles3
1208 script:
1209 # Check that the non-constbuf UBO case works.
Eric Anholt72fe7b92020-06-08 15:36:16 -07001210 - 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 -07001211
Eric Anholt4bc15e72020-03-03 14:38:09 -08001212arm64_a530_gles2:
1213 extends:
1214 - arm64_a306_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001215 variables:
1216 BM_KERNEL: /lava-files/db820c-kernel
1217 BM_DTB: /lava-files/db820c.dtb
Eric Anholt6033c102020-05-19 16:33:10 -07001218 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1219 # current upstream kernel.
1220 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
Eric Anholt4bc15e72020-03-03 14:38:09 -08001221 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
1222 DEQP_SKIPS: deqp-freedreno-a530-skips.txt
Eric Anholt8b221e02020-04-17 12:39:32 -07001223 DEQP_EXPECTED_RENDERER: FD530
Eric Anholtb4bccbd2020-05-15 11:20:44 -07001224 NIR_VALIDATE: 0
Eric Anholt4bc15e72020-03-03 14:38:09 -08001225 tags:
1226 - google-freedreno-db820c
1227
1228arm64_a530_gles3:
1229 extends:
1230 - arm64_a530_gles2
Eric Anholt4bc15e72020-03-03 14:38:09 -08001231 variables:
1232 DEQP_VER: gles3
Eric Anholtfa49a502020-04-22 11:30:38 -07001233 DEQP_PARALLEL: 1
1234 CI_NODE_INDEX: 1
Eric Anholt6bf40c22020-05-19 16:44:14 -07001235 CI_NODE_TOTAL: 40
Eric Anholt4bc15e72020-03-03 14:38:09 -08001236
Eric Anholt6c011522020-04-22 12:08:06 -07001237arm64_a530_gles31:
1238 extends:
1239 - arm64_a530_gles3
1240 variables:
1241 DEQP_VER: gles31
Eric Anholt6bf40c22020-05-19 16:44:14 -07001242 CI_NODE_INDEX: 1
1243 CI_NODE_TOTAL: 10
Eric Anholt6c011522020-04-22 12:08:06 -07001244
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001245# RADV CI
1246.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +01001247 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +01001248 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001249 variables:
1250 VK_DRIVER: radeon
Samuel Pitoiseta44cfac2020-05-04 11:44:45 +02001251 ACO_DEBUG: validateir,validatera
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001252
Eric Anholt8edaa842020-03-19 11:45:01 -07001253# Can only be triggered manually on personal branches because RADV is the only
1254# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001255radv_polaris10_vkcts:
1256 extends:
1257 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001258 - .test-radv
1259 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001260 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +01001261 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1262 tags:
1263 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001264
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001265radv-fossils:
1266 extends:
1267 - .fossilize-test
1268 - .test-radv
1269 script:
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001270 # Pitcairn (GFX6)
1271 - export RADV_FORCE_FAMILY="pitcairn"
1272 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001273 # Bonaire (GFX7)
1274 - export RADV_FORCE_FAMILY="bonaire"
1275 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001276 # Polaris10 (GFX8)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001277 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001278 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001279 # Vega10 (GFX9)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001280 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001281 - ./install/fossilize-runner.sh
Samuel Pitoisetf9dbca82020-05-04 11:48:46 +02001282 # Navi10 (GFX10)
Samuel Pitoisete22d5622020-03-06 08:36:14 +01001283 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001284 - ./install/fossilize-runner.sh
Samuel Pitoisetac6e2072020-08-10 13:29:14 +02001285 # Sienna Cichlid (GFX10)
1286 - export RADV_FORCE_FAMILY="gfx1030"
1287 - ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +01001288
Andres Gomez0ac731b12020-02-20 18:26:30 +02001289# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001290.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001291 cache:
1292 key: ${CI_JOB_NAME}
1293 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +01001294 - traces-db/
Tomeu Vizosodfe394b2020-07-21 10:48:43 +02001295 variables:
1296 TRACIE_UPLOAD_TO_MINIO: 1
Andres Gomez0ac731b12020-02-20 18:26:30 +02001297
1298.traces-test-gl:
1299 extends:
1300 - .test-gl
1301 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001302 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001303 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +02001304
1305.traces-test-vk:
1306 extends:
1307 - .test-vk
1308 - .traces-test
1309 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01001310 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001311
1312llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01001313 extends:
1314 - .traces-test-gl
1315 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +02001316 variables:
1317 LIBGL_ALWAYS_SOFTWARE: "true"
1318 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +02001319 DEVICE_NAME: "gl-vmware-llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +02001320
1321radv-polaris10-traces:
1322 extends:
1323 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -07001324 - .test-radv
1325 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +02001326 variables:
1327 DEVICE_NAME: "vk-amd-polaris10"
1328 tags:
1329 - polaris10
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001330
Andres Gomezb6b100c2020-04-24 19:32:42 +03001331radv-raven-traces:
1332 extends:
1333 - .traces-test-vk
1334 - .test-radv
1335 - .test-manual
1336 variables:
1337 DEVICE_NAME: "vk-amd-raven"
1338 tags:
1339 - raven
1340
Tomeu Vizoso8cba1a12020-04-21 15:44:03 +02001341virgl-traces:
1342 extends:
1343 - .traces-test-gl
1344 - .virgl-rules
1345 variables:
1346 LIBGL_ALWAYS_SOFTWARE: "true"
1347 GALLIUM_DRIVER: "virpipe"
1348 DEVICE_NAME: "gl-virgl"
1349 MESA_GLES_VERSION_OVERRIDE: "3.1"
1350 MESA_GLSL_VERSION_OVERRIDE: "310"