public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0
@ 2019-02-19 10:51 Arkadiusz Hiler
  2019-02-19 10:51 ` [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks Arkadiusz Hiler
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Arkadiusz Hiler @ 2019-02-19 10:51 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Daniel Vetter

... so we can have multiple binaries with the same name.

Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 Dockerfile.fedora | 2 +-
 meson.build       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile.fedora b/Dockerfile.fedora
index 08a4bd22..29520f7b 100644
--- a/Dockerfile.fedora
+++ b/Dockerfile.fedora
@@ -37,7 +37,7 @@ RUN rm -fr /tmp/peg
 
 # Meson version switching shenanigans
 WORKDIR /usr/src
-RUN curl -O https://files.pythonhosted.org/packages/c0/98/bcbda7862f8ca18dbdaa57b9c51cf7333cdc59b48278ed279217cd6ad8ff/meson-0.44.0.tar.gz
+RUN curl -O https://files.pythonhosted.org/packages/17/d0/0fe98a9557a2f07dbe6f99ef57f2bc37450b641e1f6ceae9ce04c3c845dd/meson-0.46.0.tar.gz
 
 # Cleanup workdir
 WORKDIR /
diff --git a/meson.build b/meson.build
index 356a5414..099db897 100644
--- a/meson.build
+++ b/meson.build
@@ -5,7 +5,7 @@ project('igt-gpu-tools', 'c',
           'c_std=gnu11',
         ],
 	license : 'MIT',
-	meson_version : '>=0.44.0')
+	meson_version : '>=0.46.0')
 
 cc = meson.get_compiler('c')
 
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks
  2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
@ 2019-02-19 10:51 ` Arkadiusz Hiler
  2019-02-19 11:03   ` Chris Wilson
  2019-02-19 11:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 7+ messages in thread
From: Arkadiusz Hiler @ 2019-02-19 10:51 UTC (permalink / raw)
  To: igt-dev; +Cc: Daniel Vetter

Meson 0.46.0 fixes the issue that forced us to do the renaming.

Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 benchmarks/meson.build | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/benchmarks/meson.build b/benchmarks/meson.build
index baf1243d..397f3b8d 100644
--- a/benchmarks/meson.build
+++ b/benchmarks/meson.build
@@ -30,15 +30,13 @@ endif
 benchmarksdir = join_paths(libexecdir, 'benchmarks')
 
 foreach prog : benchmark_progs
-	# FIXME meson doesn't like binaries with the same name
-	# meanwhile just suffix with _bench
-	executable(prog + '_bench', prog + '.c',
+	executable(prog, prog + '.c',
 		   install : true,
 		   install_dir : benchmarksdir,
 		   dependencies : igt_deps)
 endforeach
 
-executable('gem_wsim_bench', 'gem_wsim.c',
+executable('gem_wsim', 'gem_wsim.c',
 	   install : true,
 	   install_dir : benchmarksdir,
 	   dependencies : igt_deps + [ lib_igt_perf ])
-- 
2.20.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks
  2019-02-19 10:51 ` [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks Arkadiusz Hiler
@ 2019-02-19 11:03   ` Chris Wilson
  0 siblings, 0 replies; 7+ messages in thread
From: Chris Wilson @ 2019-02-19 11:03 UTC (permalink / raw)
  To: Arkadiusz Hiler, igt-dev; +Cc: Daniel Vetter

Quoting Arkadiusz Hiler (2019-02-19 10:51:43)
> Meson 0.46.0 fixes the issue that forced us to do the renaming.
> 
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

Makes me happy as the scripts now don't need changing.
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0
  2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
  2019-02-19 10:51 ` [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks Arkadiusz Hiler
@ 2019-02-19 11:10 ` Patchwork
  2019-02-19 12:07 ` [igt-dev] [PATCH i-g-t 1/2] " Daniel Vetter
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-02-19 11:10 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0
URL   : https://patchwork.freedesktop.org/series/56891/
State : failure

== Summary ==

IGT patchset build failed on latest successful build
368e76156f752e6ed6ac32ed9f400567aef7d3fc runner: Exit with 2 when overall timeout exceeded

The Meson build system
Version: 0.45.1
Source dir: /home/cidrm/igt-gpu-tools
Build dir: /home/cidrm/igt-gpu-tools/build
Build type: native build

meson.build:1:0: ERROR: Meson version is 0.45.1 but project requires >=0.46.0.

A full log can be found at /home/cidrm/igt-gpu-tools/build/meson-logs/meson-log.txt

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0
  2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
  2019-02-19 10:51 ` [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks Arkadiusz Hiler
  2019-02-19 11:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 Patchwork
@ 2019-02-19 12:07 ` Daniel Vetter
  2019-02-19 13:27 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2) Patchwork
  2019-02-19 16:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Daniel Vetter @ 2019-02-19 12:07 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev, Petri Latvala, Daniel Vetter

On Tue, Feb 19, 2019 at 12:51:42PM +0200, Arkadiusz Hiler wrote:
> ... so we can have multiple binaries with the same name.
> 
> Cc: Petri Latvala <petri.latvala@intel.com>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> ---
>  Dockerfile.fedora | 2 +-
>  meson.build       | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Dockerfile.fedora b/Dockerfile.fedora
> index 08a4bd22..29520f7b 100644
> --- a/Dockerfile.fedora
> +++ b/Dockerfile.fedora
> @@ -37,7 +37,7 @@ RUN rm -fr /tmp/peg
>  
>  # Meson version switching shenanigans
>  WORKDIR /usr/src
> -RUN curl -O https://files.pythonhosted.org/packages/c0/98/bcbda7862f8ca18dbdaa57b9c51cf7333cdc59b48278ed279217cd6ad8ff/meson-0.44.0.tar.gz
> +RUN curl -O https://files.pythonhosted.org/packages/17/d0/0fe98a9557a2f07dbe6f99ef57f2bc37450b641e1f6ceae9ce04c3c845dd/meson-0.46.0.tar.gz
>  
>  # Cleanup workdir
>  WORKDIR /
> diff --git a/meson.build b/meson.build
> index 356a5414..099db897 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -5,7 +5,7 @@ project('igt-gpu-tools', 'c',
>            'c_std=gnu11',
>          ],
>  	license : 'MIT',
> -	meson_version : '>=0.44.0')
> +	meson_version : '>=0.46.0')

Not yet bumped past the 0.47 requirement we have for doc building without
hacks. But please update NEWS.md too.

Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>  
>  cc = meson.get_compiler('c')
>  
> -- 
> 2.20.1
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2)
  2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
                   ` (2 preceding siblings ...)
  2019-02-19 12:07 ` [igt-dev] [PATCH i-g-t 1/2] " Daniel Vetter
@ 2019-02-19 13:27 ` Patchwork
  2019-02-19 16:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-02-19 13:27 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2)
URL   : https://patchwork.freedesktop.org/series/56891/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5630 -> IGTPW_2447
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/56891/revisions/2/mbox/

Known issues
------------

  Here are the changes found in IGTPW_2447 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_busy@basic-flip-b:
    - fi-gdg-551:         PASS -> FAIL [fdo#103182]

  
#### Possible fixes ####

  * igt@i915_selftest@live_execlists:
    - fi-apl-guc:         INCOMPLETE [fdo#103927] -> PASS

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       FAIL [fdo#109485] -> PASS

  
#### Warnings ####

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-byt-clapper:     INCOMPLETE [fdo#102657] -> FAIL [fdo#103191] / [fdo#107362]

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#102657]: https://bugs.freedesktop.org/show_bug.cgi?id=102657
  [fdo#103182]: https://bugs.freedesktop.org/show_bug.cgi?id=103182
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105998]: https://bugs.freedesktop.org/show_bug.cgi?id=105998
  [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109294]: https://bugs.freedesktop.org/show_bug.cgi?id=109294
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
  [fdo#109527]: https://bugs.freedesktop.org/show_bug.cgi?id=109527
  [fdo#109528]: https://bugs.freedesktop.org/show_bug.cgi?id=109528
  [fdo#109530]: https://bugs.freedesktop.org/show_bug.cgi?id=109530


Participating hosts (44 -> 41)
------------------------------

  Additional (2): fi-icl-y fi-bdw-5557u 
  Missing    (5): fi-kbl-soraka fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-u2 


Build changes
-------------

    * IGT: IGT_4837 -> IGTPW_2447

  CI_DRM_5630: 82d591391bfcd9cfe2eeac149c49a678b571cd62 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2447: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2447/
  IGT_4837: 368e76156f752e6ed6ac32ed9f400567aef7d3fc @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2447/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2)
  2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
                   ` (3 preceding siblings ...)
  2019-02-19 13:27 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2) Patchwork
@ 2019-02-19 16:30 ` Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-02-19 16:30 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2)
URL   : https://patchwork.freedesktop.org/series/56891/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5630_full -> IGTPW_2447_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/56891/revisions/2/mbox/

Known issues
------------

  Here are the changes found in IGTPW_2447_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a:
    - shard-kbl:          NOTRUN -> DMESG-WARN [fdo#107956]

  * igt@kms_color@pipe-b-ctm-max:
    - shard-apl:          PASS -> FAIL [fdo#108147]

  * igt@kms_cursor_crc@cursor-128x128-onscreen:
    - shard-kbl:          PASS -> FAIL [fdo#103232] +3
    - shard-apl:          PASS -> FAIL [fdo#103232] +4

  * igt@kms_cursor_crc@cursor-128x128-suspend:
    - shard-hsw:          PASS -> INCOMPLETE [fdo#103540]

  * igt@kms_cursor_crc@cursor-64x21-random:
    - shard-apl:          NOTRUN -> FAIL [fdo#103232]

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-apl:          PASS -> INCOMPLETE [fdo#103927]

  * igt@kms_flip@modeset-vs-vblank-race:
    - shard-glk:          PASS -> FAIL [fdo#103060]

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-kbl:          PASS -> FAIL [fdo#103167]

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
    - shard-apl:          PASS -> FAIL [fdo#103167] +2

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-glk:          PASS -> FAIL [fdo#103167] +3

  * igt@kms_plane@plane-position-covered-pipe-c-planes:
    - shard-apl:          PASS -> FAIL [fdo#103166] +5

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> FAIL [fdo#108145]
    - shard-glk:          PASS -> FAIL [fdo#108145]
    - shard-kbl:          NOTRUN -> FAIL [fdo#108145]

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
    - shard-glk:          PASS -> FAIL [fdo#103166] +5

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf:
    - shard-kbl:          PASS -> FAIL [fdo#103166] +1

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-kbl:          NOTRUN -> DMESG-FAIL [fdo#105763]

  * igt@kms_setmode@basic:
    - shard-apl:          PASS -> FAIL [fdo#99912]

  * igt@kms_vblank@pipe-a-ts-continuation-modeset-hang:
    - shard-apl:          NOTRUN -> FAIL [fdo#104894]

  * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
    - shard-apl:          PASS -> FAIL [fdo#104894]

  * igt@pm_rpm@system-suspend-modeset:
    - shard-kbl:          PASS -> INCOMPLETE [fdo#103665] / [fdo#107807]

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-apl:          INCOMPLETE [fdo#103927] -> PASS

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b:
    - shard-apl:          DMESG-WARN [fdo#107956] -> PASS

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic:
    - shard-apl:          FAIL [fdo#106510] / [fdo#108145] -> PASS +1

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic:
    - shard-glk:          FAIL [fdo#108145] -> PASS
    - shard-kbl:          FAIL [fdo#107725] / [fdo#108145] -> PASS

  * igt@kms_color@pipe-b-legacy-gamma:
    - shard-apl:          FAIL [fdo#104782] -> PASS

  * igt@kms_cursor_crc@cursor-64x21-onscreen:
    - shard-kbl:          FAIL [fdo#103232] -> PASS

  * igt@kms_cursor_crc@cursor-64x21-sliding:
    - shard-apl:          FAIL [fdo#103232] -> PASS +2

  * igt@kms_cursor_crc@cursor-64x64-suspend:
    - shard-apl:          FAIL [fdo#103191] / [fdo#103232] -> PASS

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
    - shard-apl:          FAIL [fdo#103167] -> PASS +4

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
    - shard-glk:          FAIL [fdo#103167] -> PASS +2

  * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping:
    - shard-apl:          FAIL [fdo#108948] -> PASS +1

  * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf:
    - shard-apl:          FAIL [fdo#103166] -> PASS +2

  * igt@kms_setmode@basic:
    - shard-hsw:          FAIL [fdo#99912] -> PASS
    - shard-kbl:          FAIL [fdo#99912] -> PASS

  * igt@kms_universal_plane@universal-plane-pipe-b-functional:
    - shard-glk:          FAIL [fdo#103166] -> PASS +3

  * igt@pm_rps@waitboost:
    - shard-apl:          FAIL [fdo#102250] -> PASS

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#102250]: https://bugs.freedesktop.org/show_bug.cgi?id=102250
  [fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
  [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
  [fdo#106510]: https://bugs.freedesktop.org/show_bug.cgi?id=106510
  [fdo#107725]: https://bugs.freedesktop.org/show_bug.cgi?id=107725
  [fdo#107807]: https://bugs.freedesktop.org/show_bug.cgi?id=107807
  [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
  [fdo#108739]: https://bugs.freedesktop.org/show_bug.cgi?id=108739
  [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (7 -> 5)
------------------------------

  Missing    (2): shard-skl shard-iclb 


Build changes
-------------

    * IGT: IGT_4837 -> IGTPW_2447
    * Piglit: piglit_4509 -> None

  CI_DRM_5630: 82d591391bfcd9cfe2eeac149c49a678b571cd62 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2447: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2447/
  IGT_4837: 368e76156f752e6ed6ac32ed9f400567aef7d3fc @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2447/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-02-19 16:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-19 10:51 [igt-dev] [PATCH i-g-t 1/2] meson: Bump meson version requirement to 0.46.0 Arkadiusz Hiler
2019-02-19 10:51 ` [igt-dev] [PATCH i-g-t 2/2] benchmarks/meson: Stop renaming benchmarks Arkadiusz Hiler
2019-02-19 11:03   ` Chris Wilson
2019-02-19 11:10 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 Patchwork
2019-02-19 12:07 ` [igt-dev] [PATCH i-g-t 1/2] " Daniel Vetter
2019-02-19 13:27 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] meson: Bump meson version requirement to 0.46.0 (rev2) Patchwork
2019-02-19 16:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox