Skip to content

Commit 645df77

Browse files
david-marchandkevintraynor
authored andcommitted
ci: Check compilation with DPDK experimental API.
Add jobs to check compilation with DPDK experimental API enabled. This will help us catch issues for the day we need one of them. Note: this should not be merged to master, intended for dpdk-latest branch only. Signed-off-by: David Marchand <[email protected]> Signed-off-by: Ian Stokes <[email protected]> Signed-off-by: Ilya Maximets <[email protected]>
1 parent 3108038 commit 645df77

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.ci/linux-build.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ SPARSE_FLAGS=""
88
EXTRA_OPTS="--enable-Werror"
99
JOBS=${JOBS:-"-j4"}
1010

11+
[ -z "$DPDK_EXPERIMENTAL" ] || DPDK=1
12+
[ -z "$DPDK_SHARED" ] || DPDK=1
13+
1114
function install_dpdk()
1215
{
1316
local DPDK_INSTALL_DIR="$(pwd)/dpdk-dir"
@@ -108,8 +111,11 @@ assert ovs.json.from_string('{\"a\": 42}') == {'a': 42}"
108111
exit 0
109112
fi
110113

111-
if [ "$DPDK" ] || [ "$DPDK_SHARED" ]; then
114+
if [ "$DPDK" ]; then
112115
install_dpdk
116+
if [ -n "$DPDK_EXPERIMENTAL" ]; then
117+
CFLAGS_FOR_OVS="${CFLAGS_FOR_OVS} -DALLOW_EXPERIMENTAL_API"
118+
fi
113119
fi
114120

115121
if [ "$STD" ]; then

.github/workflows/build-and-test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
CC: ${{ matrix.compiler }}
8585
DPDK: ${{ matrix.dpdk }}
8686
DPDK_SHARED: ${{ matrix.dpdk_shared }}
87+
DPDK_EXPERIMENTAL: ${{ matrix.dpdk_experimental }}
8788
LIBS: ${{ matrix.libs }}
8889
M32: ${{ matrix.m32 }}
8990
OPTS: ${{ matrix.opts }}
@@ -161,6 +162,9 @@ jobs:
161162
dpdk_shared: dpdk-shared
162163
opts: --enable-shared
163164

165+
- compiler: gcc
166+
dpdk_experimental: dpdk-experimental
167+
164168
- compiler: gcc
165169
m32: m32
166170
opts: --disable-ssl
@@ -223,7 +227,7 @@ jobs:
223227
python-version: ${{ env.python_default }}
224228

225229
- name: cache
226-
if: matrix.dpdk != '' || matrix.dpdk_shared != ''
230+
if: matrix.dpdk != '' || matrix.dpdk_shared != '' || matrix.dpdk_experimental != ''
227231
uses: actions/cache@v4
228232
with:
229233
path: dpdk-dir

0 commit comments

Comments
 (0)