blob: 0a8582e4629e16559cc117a70a939337bb6532f8 [file] [log] [blame]
Tomeu Vizosodcd171f2020-04-01 13:07:46 +02001variables:
Eric Anholt51d4d912020-11-09 15:06:38 -08002 DISTRIBUTION_TAG: "2020-11-09-kmod-fix"
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 Vizoso80cbb322020-11-03 10:52:04 +010010 KERNEL_URL: "https://gitlab.freedesktop.org/tomeu/linux/-/archive/v5.10-rc2-for-mesa-ci/linux-v5.10-rc2-for-mesa-ci.tar.gz"
Tomeu Vizosocf55abe2020-07-09 22:38:51 +020011 UPLOAD_FOR_LAVA: 1
Eric Anholt51d4d912020-11-09 15:06:38 -080012 INSTALL_KERNEL_MODULES: 1
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020013 script:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020014 - .gitlab-ci/container/lava_build.sh
15
16kernel+rootfs_amd64:
17 extends:
18 - .use-x86_build-base
19 - .kernel+rootfs
20 image: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
21 variables:
22 DEBIAN_ARCH: "amd64"
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020023
24kernel+rootfs_arm64:
25 extends:
26 - .use-arm_build
27 - .kernel+rootfs
28 tags:
29 - aarch64
30 variables:
31 DEBIAN_ARCH: "arm64"
32
33kernel+rootfs_armhf:
34 extends:
35 - kernel+rootfs_arm64
36 variables:
37 DEBIAN_ARCH: "armhf"
38
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020039.lava-test:
Tomeu Vizoso555c0de2019-09-18 16:43:30 +020040 extends:
Michel Dänzerebd13092019-12-06 09:39:40 +010041 - .ci-run-policy
Michel Dänzerd9693c62020-07-21 16:13:37 +020042 # Cancel job if a newer commit is pushed to the same branch
43 interruptible: true
Michel Dänzer576f7b62019-10-22 17:16:52 +020044 variables:
45 GIT_STRATEGY: none # testing doesn't build anything from source
Tomeu Vizosofcd83082019-12-18 16:11:33 +010046 ENV_VARS: "DEQP_PARALLEL=6"
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +020047 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 +010048 DEQP_VERSION: gles2
Tomeu Vizoso9418c8e2020-07-09 16:14:14 +020049 ARTIFACTS_PREFIX: "https://minio-packet.freedesktop.org/mesa-lava/"
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020050 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 +000051 script:
Tomeu Vizoso9418c8e2020-07-09 16:14:14 +020052 # Try to use the kernel and rootfs built in mainline first, to save cycles
53 - >
54 if wget -q --method=HEAD "${ARTIFACTS_PREFIX}/mesa/mesa/${DISTRIBUTION_TAG}/${ARCH}/done"; then
55 ARTIFACTS_URL="${ARTIFACTS_PREFIX}/mesa/mesa/${DISTRIBUTION_TAG}/${ARCH}"
56 else
57 ARTIFACTS_URL="${ARTIFACTS_PREFIX}/${CI_PROJECT_PATH}/${DISTRIBUTION_TAG}/${ARCH}"
58 fi
Tomeu Vizoso22d97642019-12-17 11:50:14 +010059 - >
60 artifacts/generate_lava.py \
Rohan Garg087be7e2020-01-28 15:19:53 +010061 --template artifacts/lava-${TEST_SUITE}.yml.jinja2 \
Neil Armstrongdc594c92019-10-15 15:22:07 +020062 --pipeline-info "$CI_PIPELINE_URL on $CI_COMMIT_REF_NAME ${CI_NODE_INDEX}/${CI_NODE_TOTAL}" \
Tomeu Vizosodcd171f2020-04-01 13:07:46 +020063 --base-artifacts-url ${ARTIFACTS_URL} \
64 --mesa-url ${MESA_URL} \
Tomeu Vizoso22d97642019-12-17 11:50:14 +010065 --device-type ${DEVICE_TYPE} \
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +020066 --dtb ${DTB} \
Tomeu Vizosoa1947f02020-07-09 22:29:39 +020067 --env-vars "${ENV_VARS} ${FIXED_ENV_VARS}" \
Tomeu Vizosofcd83082019-12-18 16:11:33 +010068 --deqp-version ${DEQP_VERSION} \
Tomeu Vizoso22d97642019-12-17 11:50:14 +010069 --kernel-image-name ${KERNEL_IMAGE_NAME} \
70 --kernel-image-type "${KERNEL_IMAGE_TYPE}" \
71 --gpu-version ${GPU_VERSION} \
72 --boot-method ${BOOT_METHOD} \
Vasily Khoruzhick5e5b5342020-01-16 19:37:32 -080073 --lava-tags "${LAVA_TAGS}" \
74 --ci-node-index "${CI_NODE_INDEX}" \
75 --ci-node-total "${CI_NODE_TOTAL}"
Rohan Garg087be7e2020-01-28 15:19:53 +010076 - lava_job_id=`lavacli jobs submit lava-${TEST_SUITE}.yml` || lavacli jobs submit lava-${TEST_SUITE}.yml
Tomeu Vizoso76af4652019-08-15 10:41:21 +020077 - echo $lava_job_id
Tomeu Vizoso22d97642019-12-17 11:50:14 +010078 - rm -rf artifacts/*
Rohan Garg087be7e2020-01-28 15:19:53 +010079 - cp lava-${TEST_SUITE}.yml artifacts/.
80 - lavacli jobs logs $lava_job_id | tee artifacts/lava-${TEST_SUITE}-$lava_job_id.log
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000081 - lavacli jobs show $lava_job_id
Rohan Garg087be7e2020-01-28 15:19:53 +010082 - result=`lavacli results $lava_job_id 0_${TEST_SUITE} ${TEST_SUITE} | head -1`
Tomeu Vizoso76af4652019-08-15 10:41:21 +020083 - echo $result
Tomeu Vizoso555c0de2019-09-18 16:43:30 +020084 - '[[ "$result" == "pass" ]]'
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000085 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +010086 name: "mesa_${CI_JOB_NAME}"
Tomeu Vizosocc6bbf62019-04-29 16:33:22 +000087 when: always
88 paths:
Tomeu Vizoso22d97642019-12-17 11:50:14 +010089 - artifacts/
Tomeu Vizosodab01342019-05-03 17:48:48 +020090
Tomeu Vizoso6397dff2019-10-06 08:49:56 -070091.lava-test:armhf:
Michel Dänzerc6c76522019-11-11 18:13:28 +010092 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +010093 ARCH: armhf
94 KERNEL_IMAGE_NAME: zImage
95 KERNEL_IMAGE_TYPE: "type:\ zimage"
96 BOOT_METHOD: u-boot
Rohan Garg087be7e2020-01-28 15:19:53 +010097 TEST_SUITE: "deqp"
Tomeu Vizoso22d97642019-12-17 11:50:14 +010098 extends:
99 - .lava-test
100 - .use-arm_build
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100101 needs:
Tomeu Vizosodcd171f2020-04-01 13:07:46 +0200102 - kernel+rootfs_armhf
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100103 - meson-armhf
Tomeu Vizosodab01342019-05-03 17:48:48 +0200104
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700105.lava-test:arm64:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100106 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100107 ARCH: arm64
108 KERNEL_IMAGE_NAME: Image
109 KERNEL_IMAGE_TYPE: "type:\ image"
110 BOOT_METHOD: u-boot
Rohan Garg087be7e2020-01-28 15:19:53 +0100111 TEST_SUITE: "deqp"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100112 extends:
113 - .lava-test
114 - .use-arm_build
Rohan Garg087be7e2020-01-28 15:19:53 +0100115 dependencies:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100116 - meson-arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100117 needs:
Tomeu Vizosob2cd6a02020-07-13 17:20:28 +0200118 - kernel+rootfs_arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100119 - meson-arm64
120
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200121.lava-test:amd64:
122 variables:
123 ARCH: amd64
124 KERNEL_IMAGE_NAME: bzImage
125 KERNEL_IMAGE_TYPE: "type:\ zimage"
126 BOOT_METHOD: u-boot
127 TEST_SUITE: "deqp"
128 extends:
129 - .lava-test
130 - .use-arm_build
131 needs:
132 - kernel+rootfs_amd64
Michel Dänzer4691bc52020-12-09 11:02:09 +0100133 - arm_build
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200134 - meson-testing
135
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300136.lava-traces-base:
137 after_script:
138 - mkdir -p artifacts
139 - wget -O "artifacts/junit.xml" "https://minio-packet.freedesktop.org/artifacts/${CI_PROJECT_PATH}/${CI_PIPELINE_ID}/${CI_JOB_ID}/traces/junit.xml"
140 artifacts:
141 reports:
142 junit: artifacts/junit.xml
143
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200144.lava-traces:amd64:
145 variables:
146 TEST_SUITE: "tracie"
147 extends:
148 - .lava-test:amd64
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300149 - .lava-traces-base
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200150
Rohan Garg087be7e2020-01-28 15:19:53 +0100151.lava-traces:armhf:
152 variables:
153 TEST_SUITE: "tracie"
154 extends:
155 - .lava-test:armhf
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300156 - .lava-traces-base
Rohan Garg087be7e2020-01-28 15:19:53 +0100157
158.lava-traces:arm64:
159 variables:
160 TEST_SUITE: "tracie"
161 extends:
162 - .lava-test:arm64
Alexandros Frantzis88fc3e22020-09-04 13:53:41 +0300163 - .lava-traces-base
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700164
Daniel Stone24b4a632020-10-06 16:49:10 +0100165panfrost-t720-gles2:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100166 extends:
167 - .lava-test:arm64
168 - .panfrost-rules
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200169 variables:
170 DEVICE_TYPE: sun50i-h6-pine-h64
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200171 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100172 GPU_VERSION: panfrost-t720
Eric Anholtbf29daa2020-10-29 10:29:28 -0700173 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T720 DEQP_FLAKES=deqp-panfrost-t720-flakes.txt"
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200174 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100175 - mesa-ci-aarch64-lava-collabora
Tomeu Vizosoc707b4d2019-10-25 13:04:34 +0200176
Daniel Stonefc281442020-11-09 15:09:34 +0000177.panfrost-t760-gles2:armhf:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100178 extends:
179 - .lava-test:armhf
180 - .panfrost-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700181 variables:
182 DEVICE_TYPE: rk3288-veyron-jaq
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200183 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100184 GPU_VERSION: panfrost-t760
185 BOOT_METHOD: depthcharge
186 KERNEL_IMAGE_TYPE: ""
Eric Anholt8b221e02020-04-17 12:39:32 -0700187 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T760"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700188 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100189 - mesa-ci-aarch64-lava-collabora
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700190
Tomeu Vizoso4b048002020-07-22 14:23:15 +0200191.panfrost-t760-traces:armhf:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100192 extends:
Rohan Garg087be7e2020-01-28 15:19:53 +0100193 - .lava-traces:armhf
194 - .panfrost-rules
195 variables:
196 DEVICE_TYPE: rk3288-veyron-jaq
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200197 DTB: ${DEVICE_TYPE}
Rohan Garg087be7e2020-01-28 15:19:53 +0100198 GPU_VERSION: panfrost-t760
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200199 DRIVER_NAME: panfrost
Rohan Garg087be7e2020-01-28 15:19:53 +0100200 BOOT_METHOD: depthcharge
201 KERNEL_IMAGE_TYPE: ""
Tomeu Vizoso97482c62020-07-21 10:19:17 +0200202 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 +0100203 tags:
204 - mesa-ci-aarch64-lava-collabora
205
206.lava-rk3399-gru-kevin:
207 extends:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100208 - .panfrost-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700209 variables:
210 DEVICE_TYPE: rk3399-gru-kevin
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200211 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100212 GPU_VERSION: panfrost-t860
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200213 DRIVER_NAME: panfrost
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100214 BOOT_METHOD: depthcharge
215 KERNEL_IMAGE_TYPE: ""
Tomeu Vizoso555c0de2019-09-18 16:43:30 +0200216 tags:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100217 - mesa-ci-aarch64-lava-collabora
Tomeu Vizosodab01342019-05-03 17:48:48 +0200218
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200219panfrost-t860-gles2:arm64:
Rohan Garg087be7e2020-01-28 15:19:53 +0100220 extends:
221 - .lava-test:arm64
222 - .lava-rk3399-gru-kevin
223 variables:
224 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T860"
225
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200226panfrost-t860-gles3:arm64:
Tomeu Vizoso4dcbad42020-07-16 10:24:35 +0200227 parallel: 2
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100228 extends:
229 - .lava-test:arm64
Rohan Garg087be7e2020-01-28 15:19:53 +0100230 - .lava-rk3399-gru-kevin
Tomeu Vizosofcd83082019-12-18 16:11:33 +0100231 variables:
Tomeu Vizosofcd83082019-12-18 16:11:33 +0100232 DEQP_VERSION: gles3
Eric Anholt8b221e02020-04-17 12:39:32 -0700233 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T860"
Rohan Garg087be7e2020-01-28 15:19:53 +0100234
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200235panfrost-t860-traces:arm64:
Rohan Garg087be7e2020-01-28 15:19:53 +0100236 extends:
237 - .lava-traces:arm64
238 - .lava-rk3399-gru-kevin
239 variables:
Tomeu Vizoso97482c62020-07-21 10:19:17 +0200240 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 +0100241
Tomeu Vizoso7cae9f02020-10-05 15:57:05 +0200242panfrost-g52-gles2:arm64:
243 extends:
244 - .lava-test:arm64
245 - .panfrost-rules
246 variables:
247 DEVICE_TYPE: meson-g12b-a311d-khadas-vim3
248 DTB: ${DEVICE_TYPE}
249 GPU_VERSION: panfrost-g52
250 ENV_VARS: "PAN_MESA_DEBUG=bifrost DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=G52"
251 tags:
252 - mesa-ci-aarch64-lava-collabora
253
Kenneth Graunke32455b62020-06-23 19:23:32 -0700254.panfrost-t820-gles2:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100255 extends:
256 - .lava-test:arm64
257 - .panfrost-rules
Neil Armstrongdde73402019-09-20 15:43:19 +0200258 variables:
259 DEVICE_TYPE: meson-gxm-khadas-vim2
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200260 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100261 GPU_VERSION: panfrost-t820
262 LAVA_TAGS: panfrost
Eric Anholt8b221e02020-04-17 12:39:32 -0700263 ENV_VARS: "PAN_MESA_DEBUG=gles3 DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=T820"
Neil Armstrongdde73402019-09-20 15:43:19 +0200264 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100265 - mesa-ci-aarch64-lava-baylibre
Neil Armstrongdde73402019-09-20 15:43:19 +0200266
Kenneth Graunke32455b62020-06-23 19:23:32 -0700267.lima-mali400-test:armhf:
Vasily Khoruzhicke4701162019-12-18 22:15:11 -0800268 parallel: 2
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100269 extends:
270 - .lava-test:armhf
271 - .lima-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700272 variables:
273 DEVICE_TYPE: sun8i-h3-libretech-all-h3-cc
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200274 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100275 GPU_VERSION: lima
Eric Anholt8b221e02020-04-17 12:39:32 -0700276 ENV_VARS: "DEQP_PARALLEL=3 DEQP_EXPECTED_RENDERER=Mali400"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700277 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100278 - mesa-ci-aarch64-lava-baylibre
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700279
Kenneth Graunke32455b62020-06-23 19:23:32 -0700280.lima-mali450-test:arm64:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100281 extends:
282 - .lava-test:arm64
283 - .lima-rules
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700284 variables:
285 DEVICE_TYPE: meson-gxl-s905x-libretech-cc
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200286 DTB: ${DEVICE_TYPE}
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100287 GPU_VERSION: lima
Eric Anholt8b221e02020-04-17 12:39:32 -0700288 ENV_VARS: "DEQP_PARALLEL=6 DEQP_EXPECTED_RENDERER=Mali450"
Tomeu Vizoso6397dff2019-10-06 08:49:56 -0700289 tags:
Neil Armstrong51831532020-03-25 17:06:18 +0100290 - mesa-ci-aarch64-lava-baylibre
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200291
Tomeu Vizoso6c9cf842020-08-19 09:55:47 +0200292radeonsi-stoney-gles2:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200293 extends:
294 - .lava-test:amd64
295 - .radeonsi-rules
296 variables:
297 DEVICE_TYPE: hp-11A-G6-EE-grunt
298 DTB: ""
299 GPU_VERSION: radeonsi-stoney
300 BOOT_METHOD: depthcharge
301 KERNEL_IMAGE_TYPE: ""
Eric Anholtb05c1072020-10-16 17:20:11 -0700302 ENV_VARS: "DEQP_PARALLEL=4 DEQP_EXPECTED_RENDERER=STONEY"
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200303 tags:
304 - mesa-ci-aarch64-lava-collabora
305
Tomeu Vizosod8539292020-08-21 10:49:51 +0200306radeonsi-stoney-gles3:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200307 extends:
Tomeu Vizoso6c9cf842020-08-19 09:55:47 +0200308 - radeonsi-stoney-gles2:amd64
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200309 variables:
310 DEQP_VERSION: gles3
Tomeu Vizosod8539292020-08-21 10:49:51 +0200311 CI_NODE_INDEX: 1
312 CI_NODE_TOTAL: 4
313 tags:
314 - mesa-ci-aarch64-lava-collabora
315
316radeonsi-stoney-gles31:amd64:
317 extends:
318 - radeonsi-stoney-gles2:amd64
319 variables:
320 DEQP_VERSION: gles31
321 CI_NODE_INDEX: 1
322 CI_NODE_TOTAL: 5
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200323 tags:
324 - mesa-ci-aarch64-lava-collabora
325
Tomeu Vizosod8edf8e2020-08-18 14:37:27 +0200326radeonsi-stoney-traces:amd64:
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200327 extends:
328 - .lava-traces:amd64
329 - .radeonsi-rules
330 variables:
331 DEVICE_TYPE: hp-11A-G6-EE-grunt
332 DTB: ""
333 GPU_VERSION: radeonsi-stoney
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +0200334 DRIVER_NAME: radeonsi
Tomeu Vizoso6c8b9212020-07-03 10:04:20 +0200335 BOOT_METHOD: depthcharge
336 KERNEL_IMAGE_TYPE: ""
337 tags:
338 - mesa-ci-aarch64-lava-collabora