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), ] 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")