]> git.droids-corp.org - dpdk.git/blobdiff - .ci/linux-build.sh
ci: add minimal check on testpmd
[dpdk.git] / .ci / linux-build.sh
index 6075c440cd5a9afedb2fc609105164492d04428e..ccc3a7ccd9769b2ac41b7ed514b3be96fca42177 100755 (executable)
@@ -23,10 +23,19 @@ if [ "$BUILD_DOCS" = "1" ]; then
     OPTS="$OPTS -Denable_docs=true"
 fi
 
+if [ "$BUILD_32BIT" = "1" ]; then
+    OPTS="$OPTS -Dc_args=-m32 -Dc_link_args=-m32"
+    export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
+fi
+
 OPTS="$OPTS --default-library=$DEF_LIB"
 meson build --werror -Dexamples=all $OPTS
 ninja -C build
 
+if [ "$AARCH64" != "1" ]; then
+    devtools/test-null.sh
+fi
+
 if [ "$RUN_TESTS" = "1" ]; then
     sudo meson test -C build --suite fast-tests -t 3
 fi