Re: [ovs-dev] [PATCH v3] ci: Separate DPDK from OVS build.

2023-05-04 Thread David Marchand
Hello Ilya, On Wed, May 3, 2023 at 8:06 PM Ilya Maximets wrote: > > +function build_dpdk() > > +{ > > +local VERSION_FILE="dpdk-dir/cached-version" > > +local DPDK_VER=$1 > > +local DPDK_OPTS="" > > + > > +rm -rf dpdk-dir > > + > > +if [ "${DPDK_VER##refs/*/}" != "${DPDK_VER}"

Re: [ovs-dev] [PATCH v3] ci: Separate DPDK from OVS build.

2023-05-03 Thread Ilya Maximets
On 4/28/23 14:54, David Marchand wrote: > Let's separate DPDK compilation from the rest of OVS build: > - this avoids multiple jobs building DPDK in parallel, which especially > affects builds in the dpdk-latest branch, > - we separate concerns about DPDK build requirements from OVS build > req

[ovs-dev] [PATCH v3] ci: Separate DPDK from OVS build.

2023-04-28 Thread David Marchand
Let's separate DPDK compilation from the rest of OVS build: - this avoids multiple jobs building DPDK in parallel, which especially affects builds in the dpdk-latest branch, - we separate concerns about DPDK build requirements from OVS build requirements, like python dependencies, - building DP