From 87d935ea5397edcb6a268e59a87cbdf8463e9be9 Mon Sep 17 00:00:00 2001 From: Ihor Diachenko Date: Thu, 26 Feb 2026 02:10:20 +0200 Subject: [PATCH 1/3] misc: added .dylib to gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 217236897..6d5487b62 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ site .DS_Store target *.egg-info +*.dylib # These files are auto generated and may contain sensible data that # we do not want to check-in! @@ -30,7 +31,7 @@ libs/cln-version-manager/poetry.lock uv.lock metadata.json -# JS Examples +# JS Examples examples/javascript/node_modules examples/javascript/response.bin examples/javascript/package-lock.json From d9b7731619ff6f16dad0d4f3b3dad3bf779576a2 Mon Sep 17 00:00:00 2001 From: Ihor Diachenko Date: Thu, 26 Feb 2026 02:11:31 +0200 Subject: [PATCH 2/3] tets: fixed noisy UnboundLocalError error --- libs/gl-testing/gltesting/node.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/gl-testing/gltesting/node.py b/libs/gl-testing/gltesting/node.py index 3dcca6ece..5a6be4dd8 100644 --- a/libs/gl-testing/gltesting/node.py +++ b/libs/gl-testing/gltesting/node.py @@ -190,12 +190,13 @@ def taillog(self): while True: if p.poll(1): line = f.stdout.readline() + if line == b'': + break self.logger.debug(f"stdout {line}") elif p2.poll(1): line = f2.stdout.readline() + if line == b'': + break self.logger.debug(f"stderr {line}") else: time.sleep(1) - - if line == '': - break From ddae17bc48824c47a983adb3c3c41fe0ab6a91c3 Mon Sep 17 00:00:00 2001 From: Ihor Diachenko Date: Thu, 26 Feb 2026 02:35:26 +0200 Subject: [PATCH 3/3] tets: fixed sdk build errors --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index d019c4c11..e22aa5909 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -31,7 +31,7 @@ includes: sdk: taskfile: "libs/gl-sdk/.tasks.yml" - dir: "." + dir: "libs/gl-sdk/" tasks: ci-check: