DPDK-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH dpdk] meson: bump the minimum required version to 0.60.0
@ 2026-07-16 10:53 Robin Jarry
  2026-07-16 10:58 ` Bruce Richardson
  0 siblings, 1 reply; 4+ messages in thread
From: Robin Jarry @ 2026-07-16 10:53 UTC (permalink / raw)
  To: dev, Aaron Conole, Bruce Richardson

Fix the following warnings:

doc/api/meson.build:24: WARNING: Project targets '>= 0.57.2' but uses
	feature introduced in '0.60.0': install_tag arg in custom_target.
doc/api/meson.build:71: WARNING: Project targets '>= 0.57.2' but uses
	feature introduced in '0.60.0': install_tag arg in custom_target.
doc/api/meson.build:86: WARNING: Project targets '>= 0.57.2' but uses
	feature introduced in '0.60.0': install_tag arg in custom_target.
doc/guides/meson.build:16: WARNING: Project targets '>= 0.57.2' but uses
	feature introduced in '0.60.0': install_tag arg in custom_target.

Run the CI with --fatal-meson-warnings to ensure future warnings get
detected.

Signed-off-by: Robin Jarry <rjarry@redhat.com>
---

Notes:
    NB: it would probably be nice to run builds with the latest meson release too.

 .ci/linux-build.sh | 1 +
 meson.build        | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index e0b914a14279..697b5ba9854a 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -163,6 +163,7 @@ fi
 
 OPTS="$OPTS -Dbuildtype=$buildtype"
 OPTS="$OPTS -Dwerror=true"
+OPTS="$OPTS --fatal-meson-warnings"
 
 if [ -d build ]; then
     meson configure build $OPTS
diff --git a/meson.build b/meson.build
index b01010ffa076..addfb28194c4 100644
--- a/meson.build
+++ b/meson.build
@@ -10,7 +10,7 @@ project('DPDK', 'c',
             'default_library=static',
             'warning_level=2',
         ],
-        meson_version: '>= 0.57.2'
+        meson_version: '>= 0.60.0'
         # meson_version_windows: '>= 1.5.2'
 )
 
-- 
2.55.0


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

* Re: [PATCH dpdk] meson: bump the minimum required version to 0.60.0
  2026-07-16 10:53 [PATCH dpdk] meson: bump the minimum required version to 0.60.0 Robin Jarry
@ 2026-07-16 10:58 ` Bruce Richardson
  2026-07-16 11:03   ` Robin Jarry
  0 siblings, 1 reply; 4+ messages in thread
From: Bruce Richardson @ 2026-07-16 10:58 UTC (permalink / raw)
  To: Robin Jarry; +Cc: dev, Aaron Conole

On Thu, Jul 16, 2026 at 12:53:31PM +0200, Robin Jarry wrote:
> Fix the following warnings:
> 
> doc/api/meson.build:24: WARNING: Project targets '>= 0.57.2' but uses
> 	feature introduced in '0.60.0': install_tag arg in custom_target.
> doc/api/meson.build:71: WARNING: Project targets '>= 0.57.2' but uses
> 	feature introduced in '0.60.0': install_tag arg in custom_target.
> doc/api/meson.build:86: WARNING: Project targets '>= 0.57.2' but uses
> 	feature introduced in '0.60.0': install_tag arg in custom_target.
> doc/guides/meson.build:16: WARNING: Project targets '>= 0.57.2' but uses
> 	feature introduced in '0.60.0': install_tag arg in custom_target.
> 
> Run the CI with --fatal-meson-warnings to ensure future warnings get
> detected.
> 
> Signed-off-by: Robin Jarry <rjarry@redhat.com>
> ---
> 
> Notes:
>     NB: it would probably be nice to run builds with the latest meson release too.
>
@See
https://patches.dpdk.org/project/dpdk/patch/20251205121301.3443561-1-bruce.richardson@intel.com/

/Bruce 

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

* Re: [PATCH dpdk] meson: bump the minimum required version to 0.60.0
  2026-07-16 10:58 ` Bruce Richardson
@ 2026-07-16 11:03   ` Robin Jarry
  2026-07-16 11:06     ` Bruce Richardson
  0 siblings, 1 reply; 4+ messages in thread
From: Robin Jarry @ 2026-07-16 11:03 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Aaron Conole

Hey Bruce,

Bruce Richardson, Jul 16, 2026 at 12:58:
> @See
> https://patches.dpdk.org/project/dpdk/patch/20251205121301.3443561-1-bruce.richardson@intel.com/
>
> /Bruce 

I had missed that one. I'll mark mine as rejected.


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

* Re: [PATCH dpdk] meson: bump the minimum required version to 0.60.0
  2026-07-16 11:03   ` Robin Jarry
@ 2026-07-16 11:06     ` Bruce Richardson
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Richardson @ 2026-07-16 11:06 UTC (permalink / raw)
  To: Robin Jarry; +Cc: dev, Aaron Conole

On Thu, Jul 16, 2026 at 01:03:01PM +0200, Robin Jarry wrote:
> Hey Bruce,
> 
> Bruce Richardson, Jul 16, 2026 at 12:58:
> > @See
> > https://patches.dpdk.org/project/dpdk/patch/20251205121301.3443561-1-bruce.richardson@intel.com/
> >
> > /Bruce 
> 
> I had missed that one. I'll mark mine as rejected.
> 
No problem. The idea of marking warnings as fatal for CI is not a bad
addition either. If we can get the version bump in, maybe submit that as a
separate patch.

/Bruce

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

end of thread, other threads:[~2026-07-16 11:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-16 10:53 [PATCH dpdk] meson: bump the minimum required version to 0.60.0 Robin Jarry
2026-07-16 10:58 ` Bruce Richardson
2026-07-16 11:03   ` Robin Jarry
2026-07-16 11:06     ` Bruce Richardson

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