* [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions
@ 2023-03-29 11:19 Mauro Carvalho Chehab
2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 1/2] conf.py: add some backward-compatibility bits Mauro Carvalho Chehab
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-29 11:19 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
Ubuntu 18.04 comes with a prehistoric version of Sphinx. While
upstream is currently on version 6.1.x, Ubuntu comes with version
1.6.
Yet, adding support for it is not hard, as it is just a matter of
adjusting the theme setup logic.
Mauro Carvalho Chehab (2):
conf.py: add some backward-compatibility bits
docs/testplan/conf.py: avoid using shutil include
docs/testplan/conf.py | 46 +++++++++++++++++++++++++++++++++++--------
1 file changed, 38 insertions(+), 8 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] conf.py: add some backward-compatibility bits 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab @ 2023-03-29 11:19 ` Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 2/2] docs/testplan/conf.py: avoid using shutil include Mauro Carvalho Chehab ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-03-29 11:19 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Currently, Sphinx 1.6 fails to build the documentation and produces an ugly warning. Add compatibility bits to avoid it. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- docs/testplan/conf.py | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/docs/testplan/conf.py b/docs/testplan/conf.py index cfb866cc7a15..98cd7a51ff18 100644 --- a/docs/testplan/conf.py +++ b/docs/testplan/conf.py @@ -1,10 +1,15 @@ # -*- coding: utf-8 -*- # SPDX-License-Identifier: (GPL-2.0 OR MIT) -import sys import os +import sphinx +import sys + from shutil import which +# Get Sphinx version +major, minor, patch = sphinx.version_info[:3] + extensions = [] if which('rst2pdf'): @@ -21,21 +26,33 @@ language = 'en' exclude_patterns = [] todo_include_todos = False +if major < 2 and minor < 6: + html_use_smartypants = False +else: + smartquotes = False + html_theme = "nature" +# body_max_width causes build error with nature theme on version < 1.7 +if major < 2 and minor < 7: + html_theme_options = { + "sidebarwidth": "400px", + } +else: + html_theme_options = { + "body_max_width": "1520px", + "sidebarwidth": "400px", + } + +print("Theme: %s" % html_theme) + html_css_files = [] html_static_path = ['.'] html_copy_source = False -html_use_smartypants = False html_sidebars = { '**': ['searchbox.html', 'localtoc.html']} htmlhelp_basename = 'IGT' -html_theme_options = { - "body_max_width": "1520px", - "sidebarwidth": "400px", -} - # rst2pdf pdf_documents = [ ('index', u'xe_tests', u'IGT Xe Tests', u'IGT authors'), -- 2.39.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] docs/testplan/conf.py: avoid using shutil include 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 1/2] conf.py: add some backward-compatibility bits Mauro Carvalho Chehab @ 2023-03-29 11:19 ` Mauro Carvalho Chehab 2023-03-29 12:10 ` [igt-dev] ✓ Fi.CI.BAT: success for Add support for prehistoric sphinx versions Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Mauro Carvalho Chehab @ 2023-03-29 11:19 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> This is not available at the builtin python libraries. Avoid needing it in order to make easier to build with Ubuntu 18.04. So, use the suggestion for which() from: https://stackoverflow.com/questions/377017/test-if-executable-exists-in-python Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- docs/testplan/conf.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/testplan/conf.py b/docs/testplan/conf.py index 98cd7a51ff18..a73ad99b09b6 100644 --- a/docs/testplan/conf.py +++ b/docs/testplan/conf.py @@ -5,13 +5,28 @@ import os import sphinx import sys -from shutil import which - # Get Sphinx version major, minor, patch = sphinx.version_info[:3] extensions = [] +def which(program): + import os + def is_exe(fpath): + return os.path.isfile(fpath) and os.access(fpath, os.X_OK) + + fpath, fname = os.path.split(program) + if fpath: + if is_exe(program): + return program + else: + for path in os.environ["PATH"].split(os.pathsep): + exe_file = os.path.join(path, program) + if is_exe(exe_file): + return exe_file + + return None + if which('rst2pdf'): extensions.append('rst2pdf.pdfbuilder') @@ -44,8 +59,6 @@ else: "sidebarwidth": "400px", } -print("Theme: %s" % html_theme) - html_css_files = [] html_static_path = ['.'] html_copy_source = False -- 2.39.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add support for prehistoric sphinx versions 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 1/2] conf.py: add some backward-compatibility bits Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 2/2] docs/testplan/conf.py: avoid using shutil include Mauro Carvalho Chehab @ 2023-03-29 12:10 ` Patchwork 2023-03-29 12:26 ` [igt-dev] [PATCH i-g-t 0/2] " Swati Sharma 2023-03-30 1:34 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-29 12:10 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4354 bytes --] == Series Details == Series: Add support for prehistoric sphinx versions URL : https://patchwork.freedesktop.org/series/115784/ State : success == Summary == CI Bug Log - changes from CI_DRM_12934 -> IGTPW_8708 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html Participating hosts (37 -> 35) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8708 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][1] -> [ABORT][2] ([i915#4983] / [i915#7911] / [i915#7981]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/bat-rpls-1/igt@i915_selftest@live@requests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1: - bat-dg2-8: [PASS][3] -> [FAIL][4] ([i915#7932]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html #### Possible fixes #### * igt@i915_pm_rps@basic-api: - bat-dg2-11: [FAIL][5] ([i915#8308]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/bat-dg2-11/igt@i915_pm_rps@basic-api.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/bat-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s2idle-without-i915: - fi-kbl-7567u: [ABORT][7] ([i915#8299]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/fi-kbl-7567u/igt@i915_suspend@basic-s2idle-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/fi-kbl-7567u/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][9] ([i915#7932]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: - fi-bsw-n3050: [DMESG-WARN][11] ([i915#1982]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/fi-bsw-n3050/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/fi-bsw-n3050/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2: - bat-dg1-5: [FAIL][13] ([fdo#103375]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7225 -> IGTPW_8708 CI-20190529: 20190529 CI_DRM_12934: 0d5e1ccc82c11e9d26d31b55b885a8d3f6588a8d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8708: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html IGT_7225: e2b54c935ac78a78a4243b22c53b1a61fd04ffdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html [-- Attachment #2: Type: text/html, Size: 5180 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-03-29 12:10 ` [igt-dev] ✓ Fi.CI.BAT: success for Add support for prehistoric sphinx versions Patchwork @ 2023-03-29 12:26 ` Swati Sharma 2023-03-30 1:34 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Swati Sharma @ 2023-03-29 12:26 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 29-Mar-23 4:49 PM, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Ubuntu 18.04 comes with a prehistoric version of Sphinx. While > upstream is currently on version 6.1.x, Ubuntu comes with version > 1.6. > > Yet, adding support for it is not hard, as it is just a matter of > adjusting the theme setup logic. > > Mauro Carvalho Chehab (2): > conf.py: add some backward-compatibility bits > docs/testplan/conf.py: avoid using shutil include > > docs/testplan/conf.py | 46 +++++++++++++++++++++++++++++++++++-------- > 1 file changed, 38 insertions(+), 8 deletions(-) > -- ~Swati Sharma ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add support for prehistoric sphinx versions 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-03-29 12:26 ` [igt-dev] [PATCH i-g-t 0/2] " Swati Sharma @ 2023-03-30 1:34 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-03-30 1:34 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13874 bytes --] == Series Details == Series: Add support for prehistoric sphinx versions URL : https://patchwork.freedesktop.org/series/115784/ State : success == Summary == CI Bug Log - changes from CI_DRM_12934_full -> IGTPW_8708_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8708_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][1] ([i915#2842]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-apl: NOTRUN -> [SKIP][2] ([fdo#109271]) +51 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][3] -> [FAIL][4] ([i915#4275]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271]) +30 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#3886]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#3886]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk9/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][8] -> [FAIL][9] ([i915#2346]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][10] ([i915#2346]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-dpms: - shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271]) +8 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-snb2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#658]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#533]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html #### Possible fixes #### * {igt@gem_barrier_race@remote-request@rcs0}: - shard-apl: [ABORT][15] -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-apl3/igt@gem_barrier_race@remote-request@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl7/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_exec_whisper@basic-fds-priority-all: - {shard-tglu}: [INCOMPLETE][17] ([i915#6755]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-tglu-2/igt@gem_exec_whisper@basic-fds-priority-all.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-tglu-6/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][19] ([i915#5566]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-glk1/igt@gen9_exec_parse@allowed-single.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][21] ([i915#7790]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-snb7/igt@i915_pm_rps@reset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_suspend@debugfs-reader: - shard-apl: [ABORT][23] ([i915#180]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-apl7/igt@i915_suspend@debugfs-reader.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-apl2/igt@i915_suspend@debugfs-reader.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][25] ([i915#2122]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [FAIL][27] ([i915#79]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12934/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7225 -> IGTPW_8708 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12934: 0d5e1ccc82c11e9d26d31b55b885a8d3f6588a8d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8708: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html IGT_7225: e2b54c935ac78a78a4243b22c53b1a61fd04ffdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8708/index.html [-- Attachment #2: Type: text/html, Size: 9791 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-30 1:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-29 11:19 [igt-dev] [PATCH i-g-t 0/2] Add support for prehistoric sphinx versions Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 1/2] conf.py: add some backward-compatibility bits Mauro Carvalho Chehab 2023-03-29 11:19 ` [igt-dev] [PATCH i-g-t 2/2] docs/testplan/conf.py: avoid using shutil include Mauro Carvalho Chehab 2023-03-29 12:10 ` [igt-dev] ✓ Fi.CI.BAT: success for Add support for prehistoric sphinx versions Patchwork 2023-03-29 12:26 ` [igt-dev] [PATCH i-g-t 0/2] " Swati Sharma 2023-03-30 1:34 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox