X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=.ci%2Flinux-build.sh;h=d2c821adf3fbee7ede710ae32eb26b7d699b959b;hb=701283309404e394693fba46ed71834593af808e;hp=c7c3840fc2fef5bf2ff1494769f8ac6ff7453314;hpb=777014e56d0796861c11126cf0b4836d4d42f2d4;p=dpdk.git diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index c7c3840fc2..d2c821adf3 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -12,32 +12,70 @@ on_error() { fi done } -trap on_error EXIT +# We capture the error logs as artifacts in Github Actions, no need to dump +# them via a EXIT handler. +[ -n "$GITHUB_WORKFLOW" ] || trap on_error EXIT -if [ "$AARCH64" = "1" ]; then +install_libabigail() { + version=$1 + instdir=$2 + + wget -q "http://mirrors.kernel.org/sourceware/libabigail/${version}.tar.gz" + tar -xf ${version}.tar.gz + cd $version && autoreconf -vfi && cd - + mkdir $version/build + cd $version/build && ../configure --prefix=$instdir && cd - + make -C $version/build all install + rm -rf $version + rm ${version}.tar.gz +} + +if [ "$AARCH64" = "true" ]; then # convert the arch specifier OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc" fi -if [ "$BUILD_DOCS" = "1" ]; then +if [ "$BUILD_DOCS" = "true" ]; then OPTS="$OPTS -Denable_docs=true" fi -if [ "$BUILD_32BIT" = "1" ]; then +if [ "$BUILD_32BIT" = "true" ]; then OPTS="$OPTS -Dc_args=-m32 -Dc_link_args=-m32" export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig" fi +if [ "$DEF_LIB" = "static" ]; then + OPTS="$OPTS -Dexamples=l2fwd,l3fwd" +else + OPTS="$OPTS -Dexamples=all" +fi + +OPTS="$OPTS -Dmachine=default" OPTS="$OPTS --default-library=$DEF_LIB" OPTS="$OPTS --buildtype=debugoptimized" -meson build --werror -Dexamples=all $OPTS +meson build --werror $OPTS ninja -C build -if [ "$AARCH64" != "1" ]; then +if [ "$AARCH64" != "true" ]; then devtools/test-null.sh fi -if [ "$ABI_CHECKS" = "1" ]; then +if [ "$ABI_CHECKS" = "true" ]; then + LIBABIGAIL_VERSION=${LIBABIGAIL_VERSION:-libabigail-1.6} + + if [ "$(cat libabigail/VERSION 2>/dev/null)" != "$LIBABIGAIL_VERSION" ]; then + rm -rf libabigail + # if we change libabigail, invalidate existing abi cache + rm -rf reference + fi + + if [ ! -d libabigail ]; then + install_libabigail $LIBABIGAIL_VERSION $(pwd)/libabigail + echo $LIBABIGAIL_VERSION > libabigail/VERSION + fi + + export PATH=$(pwd)/libabigail/bin:$PATH + REF_GIT_REPO=${REF_GIT_REPO:-https://dpdk.org/git/dpdk} REF_GIT_TAG=${REF_GIT_TAG:-v19.11} @@ -48,10 +86,13 @@ if [ "$ABI_CHECKS" = "1" ]; then if [ ! -d reference ]; then refsrcdir=$(readlink -f $(pwd)/../dpdk-$REF_GIT_TAG) git clone --single-branch -b $REF_GIT_TAG $REF_GIT_REPO $refsrcdir - meson --werror $OPTS $refsrcdir $refsrcdir/build + meson $OPTS -Dexamples= $refsrcdir $refsrcdir/build ninja -C $refsrcdir/build DESTDIR=$(pwd)/reference ninja -C $refsrcdir/build install devtools/gen-abi.sh reference + find reference/usr/local -name '*.a' -delete + rm -rf reference/usr/local/bin + rm -rf reference/usr/local/share echo $REF_GIT_TAG > reference/VERSION fi @@ -60,6 +101,6 @@ if [ "$ABI_CHECKS" = "1" ]; then devtools/check-abi.sh reference install ${ABI_CHECKS_WARN_ONLY:-} fi -if [ "$RUN_TESTS" = "1" ]; then +if [ "$RUN_TESTS" = "true" ]; then sudo meson test -C build --suite fast-tests -t 3 fi