diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/seastar/dpdk/.ci/linux-build.sh | |
parent | Initial commit. (diff) | |
download | ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/seastar/dpdk/.ci/linux-build.sh')
-rwxr-xr-x | src/seastar/dpdk/.ci/linux-build.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/seastar/dpdk/.ci/linux-build.sh b/src/seastar/dpdk/.ci/linux-build.sh new file mode 100755 index 000000000..d5783c1a4 --- /dev/null +++ b/src/seastar/dpdk/.ci/linux-build.sh @@ -0,0 +1,24 @@ +#!/bin/sh -xe + +on_error() { + if [ $? = 0 ]; then + exit + fi + FILES_TO_PRINT="build/meson-logs/testlog.txt build/.ninja_log build/meson-logs/meson-log.txt" + + for pr_file in $FILES_TO_PRINT; do + if [ -e "$pr_file" ]; then + cat "$pr_file" + fi + done +} +trap on_error EXIT + +if [ "$AARCH64" = "1" ]; then + # convert the arch specifier + OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc" +fi + +OPTS="$OPTS --default-library=$DEF_LIB" +meson build --werror -Dexamples=all $OPTS +ninja -C build |