Fix increment_and_push.sh hanging by showing build output instead of suppressing it
This commit is contained in:
@@ -181,10 +181,12 @@ build_release_binary() {
|
|||||||
# Prevent stale artifacts from previous builds being uploaded.
|
# Prevent stale artifacts from previous builds being uploaded.
|
||||||
rm -f build/nsigner_static_x86_64 build/nsigner_static_arm64
|
rm -f build/nsigner_static_x86_64 build/nsigner_static_arm64
|
||||||
|
|
||||||
./build_static.sh > /dev/null 2>&1 || return 1
|
print_status "Building x86_64 static binary (this may take a few minutes with PQ algorithms)..."
|
||||||
|
./build_static.sh 2>&1 | tail -5 || return 1
|
||||||
verify_binary_version "build/nsigner_static_x86_64" "$NEW_VERSION" || return 1
|
verify_binary_version "build/nsigner_static_x86_64" "$NEW_VERSION" || return 1
|
||||||
|
|
||||||
./build_static.sh --arch arm64 > /dev/null 2>&1 || print_warning "ARM64 build failed (continuing)"
|
print_status "Building ARM64 static binary..."
|
||||||
|
./build_static.sh --arch arm64 2>&1 | tail -5 || print_warning "ARM64 build failed (continuing)"
|
||||||
if [[ -x "build/nsigner_static_arm64" ]]; then
|
if [[ -x "build/nsigner_static_arm64" ]]; then
|
||||||
verify_binary_version "build/nsigner_static_arm64" "$NEW_VERSION" || return 1
|
verify_binary_version "build/nsigner_static_arm64" "$NEW_VERSION" || return 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -757,8 +757,8 @@ int socket_name_random(char *out, size_t out_len);
|
|||||||
/* Version information (auto-updated by build/version tooling) */
|
/* Version information (auto-updated by build/version tooling) */
|
||||||
#define NSIGNER_VERSION_MAJOR 0
|
#define NSIGNER_VERSION_MAJOR 0
|
||||||
#define NSIGNER_VERSION_MINOR 0
|
#define NSIGNER_VERSION_MINOR 0
|
||||||
#define NSIGNER_VERSION_PATCH 48
|
#define NSIGNER_VERSION_PATCH 46
|
||||||
#define NSIGNER_VERSION "v0.0.48"
|
#define NSIGNER_VERSION "v0.0.46"
|
||||||
|
|
||||||
|
|
||||||
/* NSIGNER_HEADERLESS_DECLS_END */
|
/* NSIGNER_HEADERLESS_DECLS_END */
|
||||||
|
|||||||
Reference in New Issue
Block a user