sync.py 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. from __future__ import annotations
  2. import importlib
  3. import os
  4. import shlex
  5. import subprocess
  6. from devenv import constants
  7. from devenv.lib import colima, config, fs, limactl, proc, venv
  8. # TODO: need to replace this with a nicer process executor in devenv.lib
  9. def run_procs(
  10. repo: str,
  11. reporoot: str,
  12. venv_path: str,
  13. _procs: tuple[tuple[str, tuple[str, ...], dict[str, str]], ...],
  14. verbose: bool = False,
  15. ) -> bool:
  16. procs: list[tuple[str, tuple[str, ...], subprocess.Popen[bytes]]] = []
  17. stdout = subprocess.PIPE if not verbose else None
  18. stderr = subprocess.STDOUT if not verbose else None
  19. for name, cmd, extra_env in _procs:
  20. print(f"⏳ {name}")
  21. if constants.DEBUG:
  22. proc.xtrace(cmd)
  23. env = {
  24. **constants.user_environ,
  25. **proc.base_env,
  26. "VIRTUAL_ENV": venv_path,
  27. "PATH": f"{venv_path}/bin:{reporoot}/.devenv/bin:{proc.base_path}",
  28. }
  29. if extra_env:
  30. env = {**env, **extra_env}
  31. procs.append(
  32. (
  33. name,
  34. cmd,
  35. subprocess.Popen(
  36. cmd,
  37. stdout=stdout,
  38. stderr=stderr,
  39. env=env,
  40. cwd=reporoot,
  41. ),
  42. )
  43. )
  44. all_good = True
  45. for name, final_cmd, p in procs:
  46. out, _ = p.communicate()
  47. if p.returncode != 0:
  48. all_good = False
  49. out_str = f"Output:\n{out.decode()}" if not verbose else ""
  50. print(
  51. f"""
  52. ❌ {name}
  53. failed command (code {p.returncode}):
  54. {shlex.join(final_cmd)}
  55. {out_str}
  56. """
  57. )
  58. else:
  59. print(f"✅ {name}")
  60. return all_good
  61. # Temporary, see https://github.com/getsentry/sentry/pull/78881
  62. def check_minimum_version(minimum_version: str):
  63. version = importlib.metadata.version("sentry-devenv")
  64. parsed_version = tuple(map(int, version.split(".")))
  65. parsed_minimum_version = tuple(map(int, minimum_version.split(".")))
  66. if parsed_version < parsed_minimum_version:
  67. raise SystemExit(
  68. f"""
  69. Hi! To reduce potential breakage we've defined a minimum
  70. devenv version ({minimum_version}) to run sync.
  71. Please run the following to update your global devenv to the minimum:
  72. {constants.root}/venv/bin/pip install -U 'sentry-devenv=={minimum_version}'
  73. Then, use it to run sync this one time.
  74. {constants.root}/bin/devenv sync
  75. """
  76. )
  77. def main(context: dict[str, str]) -> int:
  78. check_minimum_version("1.13.0")
  79. repo = context["repo"]
  80. reporoot = context["reporoot"]
  81. repo_config = config.get_config(f"{reporoot}/devenv/config.ini")
  82. # TODO: context["verbose"]
  83. verbose = os.environ.get("SENTRY_DEVENV_VERBOSE") is not None
  84. FRONTEND_ONLY = os.environ.get("SENTRY_DEVENV_FRONTEND_ONLY") is not None
  85. # repo-local devenv needs to update itself first with a successful sync
  86. # so it'll take 2 syncs to get onto devenv-managed node, it is what it is
  87. from devenv.lib import node
  88. node.install(
  89. repo_config["node"]["version"],
  90. repo_config["node"][constants.SYSTEM_MACHINE],
  91. repo_config["node"][f"{constants.SYSTEM_MACHINE}_sha256"],
  92. reporoot,
  93. )
  94. node.install_yarn(repo_config["node"]["yarn_version"], reporoot)
  95. # no more imports from devenv past this point! if the venv is recreated
  96. # then we won't have access to devenv libs until it gets reinstalled
  97. # venv's still needed for frontend because repo-local devenv and pre-commit
  98. # exist inside it
  99. venv_dir, python_version, requirements, editable_paths, bins = venv.get(reporoot, repo)
  100. url, sha256 = config.get_python(reporoot, python_version)
  101. print(f"ensuring {repo} venv at {venv_dir}...")
  102. venv.ensure(venv_dir, python_version, url, sha256)
  103. if constants.DARWIN:
  104. colima.install(
  105. repo_config["colima"]["version"],
  106. repo_config["colima"][constants.SYSTEM_MACHINE],
  107. repo_config["colima"][f"{constants.SYSTEM_MACHINE}_sha256"],
  108. reporoot,
  109. )
  110. limactl.install(
  111. repo_config["lima"]["version"],
  112. repo_config["lima"][constants.SYSTEM_MACHINE],
  113. repo_config["lima"][f"{constants.SYSTEM_MACHINE}_sha256"],
  114. reporoot,
  115. )
  116. if not run_procs(
  117. repo,
  118. reporoot,
  119. venv_dir,
  120. (
  121. # TODO: devenv should provide a job runner (jobs run in parallel, tasks run sequentially)
  122. (
  123. "python dependencies (1/4)",
  124. (
  125. # upgrading pip first
  126. "pip",
  127. "install",
  128. "--constraint",
  129. "requirements-dev-frozen.txt",
  130. "pip",
  131. ),
  132. {},
  133. ),
  134. ),
  135. verbose,
  136. ):
  137. return 1
  138. if not run_procs(
  139. repo,
  140. reporoot,
  141. venv_dir,
  142. (
  143. (
  144. # Spreading out the network load by installing js,
  145. # then py in the next batch.
  146. "javascript dependencies (1/1)",
  147. (
  148. "yarn",
  149. "install",
  150. "--frozen-lockfile",
  151. "--no-progress",
  152. "--non-interactive",
  153. ),
  154. {
  155. "NODE_ENV": "development",
  156. },
  157. ),
  158. (
  159. "python dependencies (2/4)",
  160. (
  161. "pip",
  162. "uninstall",
  163. "-qqy",
  164. "djangorestframework-stubs",
  165. "django-stubs",
  166. ),
  167. {},
  168. ),
  169. ),
  170. verbose,
  171. ):
  172. return 1
  173. if not run_procs(
  174. repo,
  175. reporoot,
  176. venv_dir,
  177. (
  178. # could opt out of syncing python if FRONTEND_ONLY but only if repo-local devenv
  179. # and pre-commit were moved to inside devenv and not the sentry venv
  180. (
  181. "python dependencies (3/4)",
  182. (
  183. "pip",
  184. "install",
  185. "--constraint",
  186. "requirements-dev-frozen.txt",
  187. "-r",
  188. "requirements-dev-frozen.txt",
  189. ),
  190. {},
  191. ),
  192. ),
  193. verbose,
  194. ):
  195. return 1
  196. if not run_procs(
  197. repo,
  198. reporoot,
  199. venv_dir,
  200. (
  201. (
  202. "python dependencies (4/4)",
  203. ("python3", "-m", "tools.fast_editable", "--path", "."),
  204. {},
  205. ),
  206. ("pre-commit dependencies", ("pre-commit", "install", "--install-hooks", "-f"), {}),
  207. ),
  208. verbose,
  209. ):
  210. return 1
  211. fs.ensure_symlink("../../config/hooks/post-merge", f"{reporoot}/.git/hooks/post-merge")
  212. if not os.path.exists(f"{constants.home}/.sentry/config.yml") or not os.path.exists(
  213. f"{constants.home}/.sentry/sentry.conf.py"
  214. ):
  215. proc.run((f"{venv_dir}/bin/sentry", "init", "--dev"))
  216. # Frontend engineers don't necessarily always have devservices running and
  217. # can configure to skip them to save on local resources
  218. if FRONTEND_ONLY:
  219. print("Skipping python migrations since SENTRY_DEVENV_FRONTEND_ONLY is set.")
  220. return 0
  221. # TODO: check healthchecks for redis and postgres to short circuit this
  222. proc.run(
  223. (
  224. f"{venv_dir}/bin/{repo}",
  225. "devservices",
  226. "up",
  227. "redis",
  228. "postgres",
  229. ),
  230. pathprepend=f"{reporoot}/.devenv/bin",
  231. exit=True,
  232. )
  233. if not run_procs(
  234. repo,
  235. reporoot,
  236. venv_dir,
  237. (
  238. (
  239. "python migrations",
  240. ("make", "apply-migrations"),
  241. {},
  242. ),
  243. ),
  244. verbose,
  245. ):
  246. return 1
  247. # faster prerequisite check than starting up sentry and running createuser idempotently
  248. stdout = proc.run(
  249. (
  250. "docker",
  251. "exec",
  252. "sentry_postgres",
  253. "psql",
  254. "sentry",
  255. "postgres",
  256. "-t",
  257. "-c",
  258. "select exists (select from auth_user where email = 'admin@sentry.io')",
  259. ),
  260. stdout=True,
  261. )
  262. if stdout != "t":
  263. proc.run(
  264. (
  265. f"{venv_dir}/bin/sentry",
  266. "createuser",
  267. "--superuser",
  268. "--email",
  269. "admin@sentry.io",
  270. "--password",
  271. "admin",
  272. "--no-input",
  273. )
  274. )
  275. return 0