On Mon, Mar 16, 2020 at 07:37:01PM +0100, Thomas Monjalon wrote: > 16/03/2020 18:09, Bruce Richardson: > > Static builds can take a lot of space, so reduce the number of examples > > built when doing those static builds. > > > > Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> > > --- > > --- a/.ci/linux-build.sh > > +++ b/.ci/linux-build.sh > > +if [ "$DEF_LIB" = "static" ] ; then > > + OPTS="$OPTS -Dexamples=l2fwd,l3fwd" > > +else > > + OPTS="$OPTS -Dexamples=all" > > +fi > > I was thinking about doing this kind of change in > devtools/test-meson-builds.sh > What do you think? >
No major objection. It's probably less likely to be an issue for people running their own test-builds, though if it saves time and space and doesn't much affect the number of issues we are going to hit/miss, I don't see why not do so.