Skip to content

Commit 1e381aa

Browse files
committed
Upgrade to ODP v1.41.0.0 and DPDK v22.11
Upgrade to ODP v1.41.0.0 and DPDK v22.11. Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
1 parent db2601f commit 1e381aa

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
steps:
7171
- uses: actions/checkout@v2
7272
- run: sudo docker run -i -v `pwd`:/ofp --privileged --shm-size 8g -e CC="${{matrix.cc}}" -e ARCH="${ARCH}"
73-
-e CXX=g++-10 $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH}-dpdk_20.11 /bin/bash -c "apt-get update && apt install g++-10 && /ofp/scripts/check-dpdk.sh"
73+
-e CXX=g++-10 $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH}-dpdk_22.11 /bin/bash -c "apt-get update && apt install g++-10 && /ofp/scripts/check-dpdk.sh"
7474
- name: Failure log
7575
if: ${{ failure() }}
7676
run: find . -name "*.trs" | xargs grep -l '^.test-result. FAIL' | while read trs ; do echo FAILURE detected at $trs; cat ${trs%%.trs}.log ; done

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Download and build OpenDataPlane (ODP) library:
7272

7373
git clone https://github.com/OpenDataPlane/odp
7474
cd odp
75-
git checkout v1.35.0.0
75+
git checkout v1.41.0.0
7676
./bootstrap
7777
./configure --prefix=<INSTALL ODP TO THIS DIR>
7878
make

docs/ofp-user-guide.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Download and install ODP:
6363

6464
git clone https://github.com/OpenDataPlane/odp
6565
cd odp
66-
git checkout v1.35.0.0
66+
git checkout v1.41.0.0
6767
./bootstrap
6868
./configure --prefix=/usr/local
6969
make install

scripts/check-dpdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mkdir -p /mnt/huge
1414
mount -t hugetlbfs nodev /mnt/huge
1515

1616
# Build ODP
17-
git clone https://github.com/OpenDataPlane/odp-dpdk --branch v1.35.0.0_DPDK_19.11 --depth 1
17+
git clone https://github.com/OpenDataPlane/odp-dpdk --branch v1.41.0.0_DPDK_22.11 --depth 1
1818
pushd odp-dpdk
1919
./bootstrap
2020
./configure --prefix=$(pwd)/install --enable-deprecated --without-tests --without-examples

scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99
cd $(readlink -e $(dirname $0))/..
1010

1111
# Build ODP
12-
git clone https://github.com/OpenDataPlane/odp --branch v1.35.0.0 --depth 1
12+
git clone https://github.com/OpenDataPlane/odp --branch v1.41.0.0 --depth 1
1313
pushd odp
1414
./bootstrap
1515
./configure --prefix=$(pwd)/install --enable-deprecated --without-tests --without-examples

scripts/devbuild_ofp_odp_dpdk.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99
cd $(readlink -e $(dirname $0))/..
1010

1111
# Build DPDK
12-
git clone http://dpdk.org/git/dpdk-stable --branch 20.11 --depth 1 ./dpdk
12+
git clone http://dpdk.org/git/dpdk-stable --branch 22.11 --depth 1 ./dpdk
1313
pushd dpdk
1414
meson build
1515
pushd build
@@ -19,7 +19,7 @@ popd
1919
popd
2020

2121
# Build ODP
22-
git clone https://github.com/OpenDataPlane/odp-dpdk --branch v1.35.0.0_DPDK_19.11 --depth 1
22+
git clone https://github.com/OpenDataPlane/odp-dpdk --branch v1.41.0.0_DPDK_22.11 --depth 1
2323
pushd odp-dpdk
2424
./bootstrap
2525
PKG_CONFIG_PATH=$(pwd)/../dpdk/install/lib64/pkgconfig:${PKG_CONFIG_PATH} ./configure --prefix=$(pwd)/install

0 commit comments

Comments
 (0)