<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git/drivers/gpu/drm/ci/test.yml, branch v6.19.11</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=v6.19.11</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=v6.19.11'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2025-06-30T00:08:58+00:00</updated>
<entry>
<title>drm/ci: i915: cml: Fix the runner tag</title>
<updated>2025-06-30T00:08:58+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-06-26T10:26:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=316b31dd39bfc4d6099f1ab049c0da53af6acd20'/>
<id>urn:sha1:316b31dd39bfc4d6099f1ab049c0da53af6acd20</id>
<content type='text'>
The GitLab runner tags are case sensitive, and Flip-hatch's tag was
incorrectly lowercase. This prevented jobs from being picked up
by the runner. Fix the runner tag for Flip-hatch.

Based on https://gitlab.freedesktop.org/mesa/mesa/-/commit/03b480d3

Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>drm/ci: Remove sdm845/cheza jobs</title>
<updated>2025-06-29T21:52:25+00:00</updated>
<author>
<name>Rob Clark</name>
<email>robin.clark@oss.qualcomm.com</email>
</author>
<published>2025-06-29T13:29:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=9386dc09c5040047bee0da3e6f2e78034117dba7'/>
<id>urn:sha1:9386dc09c5040047bee0da3e6f2e78034117dba7</id>
<content type='text'>
These runners are no more.  So remove the jobs.

Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;
Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>drm/ci: uprev mesa and ci-templates</title>
<updated>2025-06-29T03:02:33+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-05-05T14:42:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=066147e06bb8d0accb0dce25f5f8d4e0f7ed7b33'/>
<id>urn:sha1:066147e06bb8d0accb0dce25f5f8d4e0f7ed7b33</id>
<content type='text'>
The current s3cp stopped working after the migration. Update to the
latest mesa and ci-templates to get s3cp working again and adapt to
recent changes in mesa-ci.

Acked-by: Daniel Stone &lt;daniels@collabora.com&gt;
Acked-by: Helen Koike &lt;helen.fornazier@gmail.com&gt;
Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;
</content>
</entry>
<entry>
<title>drm/ci: uprev mesa</title>
<updated>2025-03-25T10:59:51+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-03-14T08:58:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=a8bd38e04a05fef74fb7644ed389662e59a18cd7'/>
<id>urn:sha1:a8bd38e04a05fef74fb7644ed389662e59a18cd7</id>
<content type='text'>
LAVA was recently patched [1] with a fix on how parameters are parsed in
`lava-test-case`, so we don't need to repeat quotes to send the
arguments properly to it. Uprev mesa to fix this issue.

[1] https://gitlab.com/lava/lava/-/commit/18c9cf79

Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Acked-by: Helen Koike &lt;helen.fornazier@gmail.com&gt;
Acked-by: Daniel Stone &lt;daniels@collabora.com&gt;
Link: https://lore.kernel.org/r/20250314085858.39328-2-vignesh.raman@collabora.com
</content>
</entry>
<entry>
<title>drm/ci: enable lockdep detection</title>
<updated>2025-03-12T02:46:31+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-02-17T05:37:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=27b6bce72c7721449d924ef987aa835daf015f26'/>
<id>urn:sha1:27b6bce72c7721449d924ef987aa835daf015f26</id>
<content type='text'>
We have enabled PROVE_LOCKING (which enables LOCKDEP) in drm-ci.
This will output warnings when kernel locking errors are encountered
and will continue executing tests. To detect if lockdep has been
triggered, check the debug_locks value in /proc/lockdep_stats after
the tests have run. When debug_locks is 0, it indicates that lockdep
has detected issues and turned itself off. Check this value, and if
lockdep is detected, exit with an error and configure it as a warning
in GitLab CI.

GitLab CI ignores exit codes other than 1 by default. Pass the correct
exit code with variable FF_USE_NEW_BASH_EVAL_STRATEGY set to true or
exit on failure.

Also update the documentation.

Acked-by: Helen Koike &lt;helen.fornazier@gmail.com&gt;
Reviewed-by: Daniel Stone &lt;daniels@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20250217053719.442644-4-vignesh.raman@collabora.com
Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
</content>
</entry>
<entry>
<title>drm/ci: refactor software-driver stage jobs</title>
<updated>2025-03-12T02:46:31+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-02-17T05:37:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=afb7a1d669b7c3f7c0f1678299377d88b57a48f8'/>
<id>urn:sha1:afb7a1d669b7c3f7c0f1678299377d88b57a48f8</id>
<content type='text'>
Move common job configuration for software-driver
stage jobs to separate job.

Acked-by: Helen Koike &lt;helen.fornazier@gmail.com&gt;
Reviewed-by: Daniel Stone &lt;daniels@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20250217053719.442644-2-vignesh.raman@collabora.com
Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
</content>
</entry>
<entry>
<title>drm/ci: update gitlab rules</title>
<updated>2025-02-05T13:10:50+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-02-05T08:16:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=df54f04f2020dd750d7c2d6c336ef91375d0db02'/>
<id>urn:sha1:df54f04f2020dd750d7c2d6c336ef91375d0db02</id>
<content type='text'>
Update gitlab rules to include scheduled pipelines.

Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Signed-off-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20250205081652.1928927-3-vignesh.raman@collabora.com
</content>
</entry>
<entry>
<title>drm/ci: uprev mesa</title>
<updated>2025-02-05T13:10:47+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2025-02-05T08:16:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=550b82651bbd4339ac415933bc21e979d439cab4'/>
<id>urn:sha1:550b82651bbd4339ac415933bc21e979d439cab4</id>
<content type='text'>
Uprev mesa to adapt to the latest changes in mesa ci
which includes new container jobs and stages. Also update
lava-submit script to adapt to the recent changes in mesa
to use LAVA rootfs overlays.

Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Signed-off-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20250205081652.1928927-2-vignesh.raman@collabora.com
</content>
</entry>
<entry>
<title>drm/ci: add sm8350-hdk</title>
<updated>2024-10-29T10:42:26+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2024-10-22T09:45:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=973db93de0a007fd1d0d85140c53f70dee6e2c25'/>
<id>urn:sha1:973db93de0a007fd1d0d85140c53f70dee6e2c25</id>
<content type='text'>
Add job that executes the IGT test suite for sm8350-hdk.

Reviewed-by: Abhinav Kumar &lt;quic_abhinavk@quicinc.com&gt;
Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;
Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Acked-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Signed-off-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20241022094509.85510-3-vignesh.raman@collabora.com
</content>
</entry>
<entry>
<title>drm/ci: add dedede</title>
<updated>2024-10-29T10:42:25+00:00</updated>
<author>
<name>Vignesh Raman</name>
<email>vignesh.raman@collabora.com</email>
</author>
<published>2024-10-22T09:45:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=123aff84f6304a94ac3d6bebb224d4e59da00821'/>
<id>urn:sha1:123aff84f6304a94ac3d6bebb224d4e59da00821</id>
<content type='text'>
Add job that executes the IGT test suite for acer-cb317-1h-c3z6-dedede.
dedede boards use 64 bit Intel Jasper Lake processors.

Signed-off-by: Vignesh Raman &lt;vignesh.raman@collabora.com&gt;
Acked-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Signed-off-by: Helen Koike &lt;helen.koike@collabora.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20241022094509.85510-2-vignesh.raman@collabora.com
</content>
</entry>
</feed>
