Skip to content

Commit 1e7195e

Browse files
authored
ci: Update git checkout to use specific SDK reference
1 parent 2faaaad commit 1e7195e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scenarios/synapse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from scenarios.helpers import info, run_cmd, sh
88

99
SYNAPSE_SDK_REPO = "https://github.com/FilOzone/synapse-sdk/"
10+
SYNAPSE_SDK_REF = "8b85290ce100b25a8e431f4c6b1ea0a1eda450ff"
1011

1112

1213
def clone_and_build(tmp_dir: Path) -> Path | None:
@@ -17,7 +18,7 @@ def clone_and_build(tmp_dir: Path) -> Path | None:
1718
):
1819
return None
1920
if not run_cmd(
20-
["git", "checkout", "master"], cwd=str(sdk_dir), label="checkout master HEAD"
21+
["git", "checkout", SYNAPSE_SDK_REF], cwd=str(sdk_dir), label="checkout last known good ref"
2122
):
2223
return None
2324
sdk_commit = sh(f"git -C {sdk_dir} rev-parse HEAD")

0 commit comments

Comments
 (0)