From de095a46e5866b7563dbf53e7a0e2ee4cc378aa3 Mon Sep 17 00:00:00 2001 From: Milind L Date: Thu, 25 Sep 2025 02:41:48 +0000 Subject: [PATCH 1/2] Fix error in semaphore.yml --- .semaphore/semaphore.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index 1562952d..c98f7cfc 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -30,7 +30,8 @@ global_job_config: - git submodule update --init --recursive epilogue: commands: - - if [[ $(command cache) ]]; then cache store "$LIBRDKAFKA_COMMIT_HASH" deps/librdkafka; done + - echo $LIBRDKAFKA_COMMIT_HASH + - if [[ $(command cache) ]]; then cache store "$LIBRDKAFKA_COMMIT_HASH" deps/librdkafka; fi blocks: - name: "Linux amd64 (musl): Build and test" From 94ee9f471019b2ec32f111e1fd009a632bb719f9 Mon Sep 17 00:00:00 2001 From: Milind L Date: Thu, 25 Sep 2025 09:04:54 +0000 Subject: [PATCH 2/2] Remove needless print --- .semaphore/semaphore.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index c98f7cfc..83b5abf4 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -30,7 +30,6 @@ global_job_config: - git submodule update --init --recursive epilogue: commands: - - echo $LIBRDKAFKA_COMMIT_HASH - if [[ $(command cache) ]]; then cache store "$LIBRDKAFKA_COMMIT_HASH" deps/librdkafka; fi blocks: