mempool: clarify default populate function
[dpdk.git] / .ci / linux-build.sh
index 4eb7c3c..6075c44 100755 (executable)
@@ -16,9 +16,17 @@ trap on_error EXIT
 
 if [ "$AARCH64" = "1" ]; then
     # convert the arch specifier
-    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linuxapp_gcc"
+    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc"
+fi
+
+if [ "$BUILD_DOCS" = "1" ]; then
+    OPTS="$OPTS -Denable_docs=true"
 fi
 
 OPTS="$OPTS --default-library=$DEF_LIB"
 meson build --werror -Dexamples=all $OPTS
 ninja -C build
+
+if [ "$RUN_TESTS" = "1" ]; then
+    sudo meson test -C build --suite fast-tests -t 3
+fi