From 21892c108e2f225abffca51e0807ffe19f63d160 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 16 Jul 2026 15:37:10 -0400 Subject: [PATCH] Fix increment_and_push.sh hanging by showing build output instead of suppressing it --- increment_and_push.sh | 6 ++++-- src/main.c | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/increment_and_push.sh b/increment_and_push.sh index 100eca4..fe5374d 100755 --- a/increment_and_push.sh +++ b/increment_and_push.sh @@ -181,10 +181,12 @@ build_release_binary() { # Prevent stale artifacts from previous builds being uploaded. 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 - ./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 verify_binary_version "build/nsigner_static_arm64" "$NEW_VERSION" || return 1 fi diff --git a/src/main.c b/src/main.c index a914c7c..dcf21ec 100644 --- a/src/main.c +++ b/src/main.c @@ -757,8 +757,8 @@ int socket_name_random(char *out, size_t out_len); /* Version information (auto-updated by build/version tooling) */ #define NSIGNER_VERSION_MAJOR 0 #define NSIGNER_VERSION_MINOR 0 -#define NSIGNER_VERSION_PATCH 48 -#define NSIGNER_VERSION "v0.0.48" +#define NSIGNER_VERSION_PATCH 46 +#define NSIGNER_VERSION "v0.0.46" /* NSIGNER_HEADERLESS_DECLS_END */