X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Fbabeltrace%2Frelease.sh;h=c120a8b30fbce16c54d7ee48b857c0e950b15525;hb=HEAD;hp=43db8dbe0903faae3b8590da820c00dd89010c17;hpb=8abe9f8a36c7638231dc794afa127a7728b45c87;p=lttng-ci.git diff --git a/scripts/babeltrace/release.sh b/scripts/babeltrace/release.sh index 43db8db..c120a8b 100644 --- a/scripts/babeltrace/release.sh +++ b/scripts/babeltrace/release.sh @@ -1,7 +1,7 @@ -#!/bin/bash -exu +#!/bin/bash # # Copyright (C) 2015 Jonathan Rajotte-Julien -# Copyright (C) 2020 Michael Jeanson +# Copyright (C) 2023 Michael Jeanson # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +set -exu + # Version compare functions vercomp () { set +u @@ -23,6 +25,8 @@ vercomp () { return 0 fi local IFS=. + # Ignore the shellcheck warning, we want splitting to happen based on IFS. + # shellcheck disable=SC2206 local i ver1=($1) ver2=($2) # fill empty fields in ver1 with zeros for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do @@ -100,7 +104,7 @@ PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/} # Version specific configurations if vergte "$PACKAGE_VERSION" "2.0"; then BASENAME="babeltrace2" - CONF_OPTS=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins") + CONF_OPTS=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins" "--disable-Werror") # Enable dev mode by default for BT 2.0 builds #export BABELTRACE_DEBUG_MODE=1 @@ -116,7 +120,7 @@ TARBALL_FILE="$BASENAME-$PACKAGE_VERSION.tar.bz2" # Make sure the reported version matches the current git tag -GIT_TAG="$(git describe --exact-match --tags $(git log -n1 --pretty='%h')|| echo 'undefined')" +GIT_TAG="$(git describe --exact-match --tags "$(git log -n1 --pretty='%h')" || echo 'undefined')" if [ "v$PACKAGE_VERSION" != "$GIT_TAG" ]; then echo "Git checkout is not tagged or doesn't match the reported version." @@ -124,7 +128,7 @@ if [ "v$PACKAGE_VERSION" != "$GIT_TAG" ]; then fi # Generate release tarball -./configure "${CONF_OPTS[@]}" +./configure make dist cp "./$TARBALL_FILE" "$OUTDIR/"