blob: 4f48a42db63e6bd114af05033d85aa03e887eafd [file] [log] [blame]
Tomeu Vizosodcd171f2020-04-01 13:07:46 +02001variables:
Tomeu Vizosob74cfa72020-10-05 09:14:11 +02002 DISTRIBUTION_TAG: "2020-10-08-new-kernel"
Tomeu Vizosodcd171f2020-04-01 13:07:46 +02003
4.kernel+rootfs:
5 stage: container-2
Tomeu Vizoso315ac942020-07-08 09:57:44 +02006 extends:
7 - .ci-run-policy
Tomeu Vizosodcd171f2020-04-01 13:07:46 +02008 variables:
9 GIT_STRATEGY: fetch
Tomeu Vizosob74cfa72020-10-05 09:14:11 +020010 KERNEL_URL: "https://gitlab.freedesktop.org/tomeu/linux/-/archive/v5.9-rc5-for-mesa-ci/linux-v5.9-rc5-for-mesa-ci.tar.gz"
Tomeu Vizosocf55abe2020-07-09 22:38:51 +020011 UPLOAD_FOR_LAVA: 1
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020012 script:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020013 - .gitlab-ci/container/lava_build.sh
14
15kernel+rootfs_amd64:
16 extends:
17 - .use-x86_build-base
18 - .kernel+rootfs
19 image: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
20 variables:
21 DEBIAN_ARCH: "amd64"
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020022
23kernel+rootfs_arm64:
24 extends:
25 - .use-arm_build
26 - .kernel+rootfs
27 tags:
28 - aarch64
29 variables:
30 DEBIAN_ARCH: "arm64"
31
32kernel+rootfs_armhf:
33 extends:
34 - kernel+rootfs_arm64
35 variables:
36 DEBIAN_ARCH: "armhf"
37
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020038.lava-test:
Tomeu Vizoso555c0de2019-09-18 16:43:30 +020039 extends:
Michel Dänzerebd13092019-12-06 09:39:40 +010040 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +020041 # Cancel job if a newer commit is pushed to the same branch
42 interruptible: true
Michel Dänzer576f7b62019-10-22 17:16:52 +020043 variables:
44 GIT_STRATEGY: none # testing doesn't build anything from source
Tomeu Vizosofcd83082019-12-18 16:11:33 +010045 ENV_VARS: "DEQP_PARALLEL=6"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +020046 FIXED_ENV_VARS: "CI_PIPELINE_ID=${CI_PIPELINE_ID} CI_JOB_ID=${CI_JOB_ID} CI_PROJECT_PATH=${CI_PROJECT_PATH} CI_JOB_JWT=${CI_JOB_JWT} TRACIE_NO_UNIT_TESTS=1 TRACIE_UPLOAD_TO_MINIO=1 DRIVER_NAME=${DRIVER_NAME}"
Tomeu Vizosofcd83082019-12-18 16:11:33 +010047 DEQP_VERSION: gles2
Tomeu Vizoso9418c8e2020-07-09 16:14:14 +020048 ARTIFACTS_PREFIX: "https://minio-packet.freedesktop.org/mesa-lava/"
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020049 MESA_URL: "https://minio-packet.freedesktop.org/artifacts/${CI_PROJECT_PATH}/${CI_PIPELINE_ID}/mesa-${ARCH}.tar.gz"
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000050 script:
Tomeu Vizoso9418c8e2020-07-09 16:14:14 +020051 # Try to use the kernel and rootfs built in mainline first, to save cycles
52 - >
53 if wget -q --method=HEAD "${ARTIFACTS_PREFIX}/mesa/mesa/${DISTRIBUTION_TAG}/${ARCH}/done"; then
54 ARTIFACTS_URL="${ARTIFACTS_PREFIX}/mesa/mesa/${DISTRIBUTION_TAG}/${ARCH}"
55 else
56 ARTIFACTS_URL="${ARTIFACTS_PREFIX}/${CI_PROJECT_PATH}/${DISTRIBUTION_TAG}/${ARCH}"
57 fi
Tomeu Vizoso22d97642019-12-17 11:50:14 +010058 - >
59 artifacts/generate_lava.py \
Rohan Garg087be7e2020-01-28 15:19:53 +010060 --template artifacts/lava-${TEST_SUITE}.yml.jinja2 \
Neil Armstrongdc594c92019-10-15 15:22:07 +020061 --pipeline-info "$CI_PIPELINE_URL on $CI_COMMIT_REF_NAME ${CI_NODE_INDEX}/${CI_NODE_TOTAL}" \
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020062 --base-artifacts-url ${ARTIFACTS_URL} \
63 --mesa-url ${MESA_URL} \
Tomeu Vizoso22d97642019-12-17 11:50:14 +010064 --device-type ${DEVICE_TYPE} \
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020065 --dtb ${DTB} \
Tomeu Vizosoa1947f02020-07-09 22:29:39 +020066 --env-vars "${ENV_VARS} ${FIXED_ENV_VARS}" \
Tomeu Vizosofcd83082019-12-18 16:11:33 +010067 --deqp-version ${DEQP_VERSION} \
Tomeu Vizoso22d97642019-12-17 11:50:14 +010068 --kernel-image-name ${KERNEL_IMAGE_NAME} \
69 --kernel-image-type "${KERNEL_IMAGE_TYPE}" \
70 --gpu-version ${GPU_VERSION} \
71 --boot-method ${BOOT_METHOD} \
Vasily Khoruzhick5e5b5342020-01-16 19:37:32 -080072 --lava-tags "${LAVA_TAGS}" \
73 --ci-node-index "${CI_NODE_INDEX}" \
74 --ci-node-total "${CI_NODE_TOTAL}"
Rohan Garg087be7e2020-01-28 15:19:53 +010075 - lava_job_id=`lavacli jobs submit lava-${TEST_SUITE}.yml` || lavacli jobs submit lava-${TEST_SUITE}.yml
Tomeu Vizoso76af4652019-08-15 10:41:21 +020076 - echo $lava_job_id
Tomeu Vizoso22d97642019-12-17 11:50:14 +010077 - rm -rf artifacts/*
Rohan Garg087be7e2020-01-28 15:19:53 +010078 - cp lava-${TEST_SUITE}.yml artifacts/.
79 - lavacli jobs logs $lava_job_id | tee artifacts/lava-${TEST_SUITE}-$lava_job_id.log
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000080 - lavacli jobs show $lava_job_id
Rohan Garg087be7e2020-01-28 15:19:53 +010081 - result=`lavacli results $lava_job_id 0_${TEST_SUITE} ${TEST_SUITE} | head -1`
Tomeu Vizoso76af4652019-08-15 10:41:21 +020082 - echo $result
Tomeu Vizoso555c0de2019-09-18 16:43:30 +020083 - '[[ "$result" == "pass" ]]'
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000084 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +010085 name: "mesa_${CI_JOB_NAME}"
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000086 when: always
87 paths:
Tomeu Vizoso22d97642019-12-17 11:50:14 +010088 - artifacts/
Tomeu Vizosodab01342019-05-03 17:48:48 +020089
Tomeu Vizoso6397dff2019-10-06 08:49:56 -070090.lava-test:armhf:
Michel Dänzerc6c76522019-11-11 18:13:28 +010091 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +010092 ARCH: armhf
93 KERNEL_IMAGE_NAME: zImage
94 KERNEL_IMAGE_TYPE: "type:\ zimage"
95 BOOT_METHOD: u-boot
Rohan Garg087be7e2020-01-28 15:19:53 +010096 TEST_SUITE: "deqp"
Tomeu Vizoso22d97642019-12-17 11:50:14 +010097 extends:
98 - .lava-test
99 - .use-arm_build
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100100 needs:
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200101 - kernel+rootfs_armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100102 - meson-armhf
Tomeu Vizosodab01342019-05-03 17:48:48 +0200103
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700104.lava-test:arm64:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100105 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100106 ARCH: arm64
107 KERNEL_IMAGE_NAME: Image
108 KERNEL_IMAGE_TYPE: "type:\ image"
109 BOOT_METHOD: u-boot
Rohan Garg087be7e2020-01-28 15:19:53 +0100110 TEST_SUITE: "deqp"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100111 extends:
112 - .lava-test
113 - .use-arm_build
Rohan Garg087be7e2020-01-28 15:19:53 +0100114 dependencies:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100115 - meson-arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100116 needs:
Tomeu Vizosob2cd6a02020-07-13 17:20:28 +0200117 - kernel+rootfs_arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100118 - meson-arm64
119
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200120.lava-test:amd64:
121 variables:
122 ARCH: amd64
123 KERNEL_IMAGE_NAME: bzImage
124 KERNEL_IMAGE_TYPE: "type:\ zimage"
125 BOOT_METHOD: u-boot
126 TEST_SUITE: "deqp"
127 extends:
128 - .lava-test
129 - .use-arm_build
130 needs:
131 - kernel+rootfs_amd64
132 - meson-testing
133
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300134.lava-traces-base:
135 after_script:
136 - mkdir -p artifacts
137 - wget -O "artifacts/junit.xml" "https://minio-packet.freedesktop.org/artifacts/${CI_PROJECT_PATH}/${CI_PIPELINE_ID}/${CI_JOB_ID}/traces/junit.xml"
138 artifacts:
139 reports:
140 junit: artifacts/junit.xml
141
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200142.lava-traces:amd64:
143 variables:
144 TEST_SUITE: "tracie"
145 extends:
146 - .lava-test:amd64
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300147 - .lava-traces-base
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200148
Rohan Garg087be7e2020-01-28 15:19:53 +0100149.lava-traces:armhf:
150 variables:
151 TEST_SUITE: "tracie"
152 extends:
153 - .lava-test:armhf
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300154 - .lava-traces-base
Rohan Garg087be7e2020-01-28 15:19:53 +0100155
156.lava-traces:arm64:
157 variables:
158 TEST_SUITE: "tracie"
159 extends:
160 - .lava-test:arm64
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300161 - .lava-traces-base
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700162
Daniel Stone24b4a632020-10-06 16:49:10 +0100163panfrost-t720-gles2:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100164 extends:
165 - .lava-test:arm64
166 - .panfrost-rules
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200167 variables:
168 DEVICE_TYPE: sun50i-h6-pine-h64
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200169 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100170 GPU_VERSION: panfrost-t720
Eric Anholt8b221e02020-04-17 12:39:32 -0700171 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T720"
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200172 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100173 - mesa-ci-aarch64-lava-collabora
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200174
Daniel Stone24b4a632020-10-06 16:49:10 +0100175panfrost-t760-gles2:armhf:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100176 extends:
177 - .lava-test:armhf
178 - .panfrost-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700179 variables:
180 DEVICE_TYPE: rk3288-veyron-jaq
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200181 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100182 GPU_VERSION: panfrost-t760
183 BOOT_METHOD: depthcharge
184 KERNEL_IMAGE_TYPE: ""
Eric Anholt8b221e02020-04-17 12:39:32 -0700185 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T760"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700186 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100187 - mesa-ci-aarch64-lava-collabora
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700188
Tomeu Vizoso4b048002020-07-22 14:23:15 +0200189.panfrost-t760-traces:armhf:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100190 extends:
Rohan Garg087be7e2020-01-28 15:19:53 +0100191 - .lava-traces:armhf
192 - .panfrost-rules
193 variables:
194 DEVICE_TYPE: rk3288-veyron-jaq
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200195 DTB: ${DEVICE_TYPE}
Rohan Garg087be7e2020-01-28 15:19:53 +0100196 GPU_VERSION: panfrost-t760
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200197 DRIVER_NAME: panfrost
Rohan Garg087be7e2020-01-28 15:19:53 +0100198 BOOT_METHOD: depthcharge
199 KERNEL_IMAGE_TYPE: ""
Tomeu Vizoso97482c62020-07-21 10:19:17 +0200200 ENV_VARS: "PAN_MESA_DEBUG=deqp MESA_GLES_VERSION_OVERRIDE=3.1 MESA_GL_VERSION_OVERRIDE=3.3 MESA_GLSL_VERSION_OVERRIDE=330"
Rohan Garg087be7e2020-01-28 15:19:53 +0100201 tags:
202 - mesa-ci-aarch64-lava-collabora
203
204.lava-rk3399-gru-kevin:
205 extends:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100206 - .panfrost-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700207 variables:
208 DEVICE_TYPE: rk3399-gru-kevin
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200209 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100210 GPU_VERSION: panfrost-t860
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200211 DRIVER_NAME: panfrost
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100212 BOOT_METHOD: depthcharge
213 KERNEL_IMAGE_TYPE: ""
Tomeu Vizoso555c0de2019-09-18 16:43:30 +0200214 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100215 - mesa-ci-aarch64-lava-collabora
Tomeu Vizosodab01342019-05-03 17:48:48 +0200216
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200217panfrost-t860-gles2:arm64:
Rohan Garg087be7e2020-01-28 15:19:53 +0100218 extends:
219 - .lava-test:arm64
220 - .lava-rk3399-gru-kevin
221 variables:
222 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T860"
223
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200224panfrost-t860-gles3:arm64:
Tomeu Vizoso4dcbad42020-07-16 10:24:35 +0200225 parallel: 2
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100226 extends:
227 - .lava-test:arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100228 - .lava-rk3399-gru-kevin
Tomeu Vizosofcd83082019-12-18 16:11:33 +0100229 variables:
Tomeu Vizosofcd83082019-12-18 16:11:33 +0100230 DEQP_VERSION: gles3
Eric Anholt8b221e02020-04-17 12:39:32 -0700231 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T860"
Rohan Garg087be7e2020-01-28 15:19:53 +0100232
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200233panfrost-t860-traces:arm64:
Rohan Garg087be7e2020-01-28 15:19:53 +0100234 extends:
235 - .lava-traces:arm64
236 - .lava-rk3399-gru-kevin
237 variables:
Tomeu Vizoso97482c62020-07-21 10:19:17 +0200238 ENV_VARS: "PAN_MESA_DEBUG=deqp MESA_GLES_VERSION_OVERRIDE=3.1 MESA_GL_VERSION_OVERRIDE=3.3 MESA_GLSL_VERSION_OVERRIDE=330"
Tomeu Vizosofcd83082019-12-18 16:11:33 +0100239
Tomeu Vizoso7cae9f02020-10-05 15:57:05 +0200240panfrost-g52-gles2:arm64:
241 extends:
242 - .lava-test:arm64
243 - .panfrost-rules
244 variables:
245 DEVICE_TYPE: meson-g12b-a311d-khadas-vim3
246 DTB: ${DEVICE_TYPE}
247 GPU_VERSION: panfrost-g52
248 ENV_VARS: "PAN_MESA_DEBUG=bifrost DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=G52"
249 tags:
250 - mesa-ci-aarch64-lava-collabora
251
Kenneth Graunke32455b62020-06-23 19:23:32 -0700252.panfrost-t820-gles2:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100253 extends:
254 - .lava-test:arm64
255 - .panfrost-rules
Neil Armstrongdde73402019-09-20 15:43:19 +0200256 variables:
257 DEVICE_TYPE: meson-gxm-khadas-vim2
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200258 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100259 GPU_VERSION: panfrost-t820
260 LAVA_TAGS: panfrost
Eric Anholt8b221e02020-04-17 12:39:32 -0700261 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T820"
Neil Armstrongdde73402019-09-20 15:43:19 +0200262 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100263 - mesa-ci-aarch64-lava-baylibre
Neil Armstrongdde73402019-09-20 15:43:19 +0200264
Kenneth Graunke32455b62020-06-23 19:23:32 -0700265.lima-mali400-test:armhf:
Vasily Khoruzhicke4701162019-12-18 22:15:11 -0800266 parallel: 2
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100267 extends:
268 - .lava-test:armhf
269 - .lima-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700270 variables:
271 DEVICE_TYPE: sun8i-h3-libretech-all-h3-cc
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200272 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100273 GPU_VERSION: lima
Eric Anholt8b221e02020-04-17 12:39:32 -0700274 ENV_VARS: "DEQP_PARALLEL=3 DEQP_EXPECTED_RENDERER=Mali400"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700275 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100276 - mesa-ci-aarch64-lava-baylibre
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700277
Kenneth Graunke32455b62020-06-23 19:23:32 -0700278.lima-mali450-test:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100279 extends:
280 - .lava-test:arm64
281 - .lima-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700282 variables:
283 DEVICE_TYPE: meson-gxl-s905x-libretech-cc
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200284 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100285 GPU_VERSION: lima
Eric Anholt8b221e02020-04-17 12:39:32 -0700286 ENV_VARS: "DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=Mali450"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700287 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100288 - mesa-ci-aarch64-lava-baylibre
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200289
Tomeu Vizoso6c9cf842020-08-19 09:55:47 +0200290radeonsi-stoney-gles2:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200291 extends:
292 - .lava-test:amd64
293 - .radeonsi-rules
294 variables:
295 DEVICE_TYPE: hp-11A-G6-EE-grunt
296 DTB: ""
297 GPU_VERSION: radeonsi-stoney
298 BOOT_METHOD: depthcharge
299 KERNEL_IMAGE_TYPE: ""
Eric Anholtb05c1072020-10-16 17:20:11 -0700300 ENV_VARS: "DEQP_PARALLEL=4 DEQP_EXPECTED_RENDERER=STONEY"
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200301 tags:
302 - mesa-ci-aarch64-lava-collabora
303
Tomeu Vizosod8539292020-08-21 10:49:51 +0200304radeonsi-stoney-gles3:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200305 extends:
Tomeu Vizoso6c9cf842020-08-19 09:55:47 +0200306 - radeonsi-stoney-gles2:amd64
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200307 variables:
308 DEQP_VERSION: gles3
Tomeu Vizosod8539292020-08-21 10:49:51 +0200309 CI_NODE_INDEX: 1
310 CI_NODE_TOTAL: 4
311 tags:
312 - mesa-ci-aarch64-lava-collabora
313
314radeonsi-stoney-gles31:amd64:
315 extends:
316 - radeonsi-stoney-gles2:amd64
317 variables:
318 DEQP_VERSION: gles31
319 CI_NODE_INDEX: 1
320 CI_NODE_TOTAL: 5
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200321 tags:
322 - mesa-ci-aarch64-lava-collabora
323
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200324radeonsi-stoney-traces:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200325 extends:
326 - .lava-traces:amd64
327 - .radeonsi-rules
328 variables:
329 DEVICE_TYPE: hp-11A-G6-EE-grunt
330 DTB: ""
331 GPU_VERSION: radeonsi-stoney
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200332 DRIVER_NAME: radeonsi
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200333 BOOT_METHOD: depthcharge
334 KERNEL_IMAGE_TYPE: ""
335 tags:
336 - mesa-ci-aarch64-lava-collabora