Skip to content

Commit

Permalink
ci: Update meson requirement for DPDK.
Browse files Browse the repository at this point in the history
The current version of meson used for building DPDK is 0.49.2.

This has the restriction of holding the required python version to 3.9.

A recent change [1] in DPDK bumped requirements on meson to 0.53.2.

Update the version of meson used to build DPDK to 0.53.2 to remove the
restriction.

[1] https://git.dpdk.org/dpdk/commit/?id=909ad7b80e5e

Signed-off-by: Ian Stokes <[email protected]>
Reviewed-by: David Marchand <[email protected]>
  • Loading branch information
istokes committed Nov 5, 2022
1 parent c8a08db commit 165edb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/linux-prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cd ..
pip3 install --disable-pip-version-check --user wheel
pip3 install --disable-pip-version-check --user \
flake8 'hacking>=3.0' netaddr pyparsing sphinx setuptools pyelftools
pip3 install --user 'meson==0.49.2'
pip3 install --user 'meson==0.53.2'

if [ "$M32" ]; then
# Installing 32-bit libraries.
Expand Down

0 comments on commit 165edb9

Please sign in to comment.