From 5a8c47068b73f1aee0ab0cbe9313b7f3126e164a Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Sun, 3 May 2026 10:37:54 +0200 Subject: [PATCH 1/2] ci: Update git checkout to use specific SDK reference --- scenarios/synapse.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scenarios/synapse.py b/scenarios/synapse.py index 530aac1..db41e20 100644 --- a/scenarios/synapse.py +++ b/scenarios/synapse.py @@ -7,6 +7,7 @@ from scenarios.helpers import info, run_cmd, sh SYNAPSE_SDK_REPO = "https://github.com/FilOzone/synapse-sdk/" +SYNAPSE_SDK_REF = "8b85290ce100b25a8e431f4c6b1ea0a1eda450ff" def clone_and_build(tmp_dir: Path) -> Path | None: @@ -17,7 +18,9 @@ def clone_and_build(tmp_dir: Path) -> Path | None: ): return None if not run_cmd( - ["git", "checkout", "master"], cwd=str(sdk_dir), label="checkout master HEAD" + ["git", "checkout", SYNAPSE_SDK_REF], + cwd=str(sdk_dir), + label="checkout last known good ref", ): return None sdk_commit = sh(f"git -C {sdk_dir} rev-parse HEAD") From 857b68d0de54c53e68a3158651ae0064d46a8712 Mon Sep 17 00:00:00 2001 From: galargh Date: Sun, 3 May 2026 11:37:02 +0200 Subject: [PATCH 2/2] ci: Increase storage test timeout --- scenarios/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenarios/run.py b/scenarios/run.py index 8eac053..d094f54 100755 --- a/scenarios/run.py +++ b/scenarios/run.py @@ -26,7 +26,7 @@ ORDER = [ ("test_containers", 5), ("test_basic_balances", 10), - ("test_storage_e2e", 100), + ("test_storage_e2e", 200), ("test_caching_subsystem", 200), ]