sync.py 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. from devenv.lib import node
  86. node.install(
  87. repo_config["node"]["version"],
  88. repo_config["node"][constants.SYSTEM_MACHINE],
  89. repo_config["node"][f"{constants.SYSTEM_MACHINE}_sha256"],
  90. reporoot,
  91. )
  92. node.install_yarn(repo_config["node"]["yarn_version"], reporoot)
  93. # no more imports from devenv past this point! if the venv is recreated
  94. # then we won't have access to devenv libs until it gets reinstalled
  95. # venv's still needed for frontend because repo-local devenv and pre-commit
  96. # exist inside it
  97. venv_dir, python_version, requirements, editable_paths, bins = venv.get(reporoot, repo)
  98. url, sha256 = config.get_python(reporoot, python_version)
  99. print(f"ensuring {repo} venv at {venv_dir}...")
  100. venv.ensure(venv_dir, python_version, url, sha256)
  101. if constants.DARWIN:
  102. colima.install(
  103. repo_config["colima"]["version"],
  104. repo_config["colima"][constants.SYSTEM_MACHINE],
  105. repo_config["colima"][f"{constants.SYSTEM_MACHINE}_sha256"],
  106. reporoot,
  107. )
  108. limactl.install(
  109. repo_config["lima"]["version"],
  110. repo_config["lima"][constants.SYSTEM_MACHINE],
  111. repo_config["lima"][f"{constants.SYSTEM_MACHINE}_sha256"],
  112. reporoot,
  113. )
  114. if not run_procs(
  115. repo,
  116. reporoot,
  117. venv_dir,
  118. (
  119. # TODO: devenv should provide a job runner (jobs run in parallel, tasks run sequentially)
  120. (
  121. "python dependencies (1/4)",
  122. (
  123. # upgrading pip first
  124. "pip",
  125. "install",
  126. "--constraint",
  127. "requirements-dev-frozen.txt",
  128. "pip",
  129. ),
  130. {},
  131. ),
  132. ),
  133. verbose,
  134. ):
  135. return 1
  136. if not run_procs(
  137. repo,
  138. reporoot,
  139. venv_dir,
  140. (
  141. (
  142. # Spreading out the network load by installing js,
  143. # then py in the next batch.
  144. "javascript dependencies (1/1)",
  145. (
  146. "yarn",
  147. "install",
  148. "--frozen-lockfile",
  149. "--no-progress",
  150. "--non-interactive",
  151. ),
  152. {
  153. "NODE_ENV": "development",
  154. },
  155. ),
  156. (
  157. "python dependencies (2/4)",
  158. (
  159. "pip",
  160. "uninstall",
  161. "-qqy",
  162. "djangorestframework-stubs",
  163. "django-stubs",
  164. ),
  165. {},
  166. ),
  167. ),
  168. verbose,
  169. ):
  170. return 1
  171. if not run_procs(
  172. repo,
  173. reporoot,
  174. venv_dir,
  175. (
  176. # could opt out of syncing python if FRONTEND_ONLY but only if repo-local devenv
  177. # and pre-commit were moved to inside devenv and not the sentry venv
  178. (
  179. "python dependencies (3/4)",
  180. (
  181. "pip",
  182. "install",
  183. "--constraint",
  184. "requirements-dev-frozen.txt",
  185. "-r",
  186. "requirements-dev-frozen.txt",
  187. ),
  188. {},
  189. ),
  190. ),
  191. verbose,
  192. ):
  193. return 1
  194. if not run_procs(
  195. repo,
  196. reporoot,
  197. venv_dir,
  198. (
  199. (
  200. "python dependencies (4/4)",
  201. ("python3", "-m", "tools.fast_editable", "--path", "."),
  202. {},
  203. ),
  204. ("pre-commit dependencies", ("pre-commit", "install", "--install-hooks", "-f"), {}),
  205. ),
  206. verbose,
  207. ):
  208. return 1
  209. fs.ensure_symlink("../../config/hooks/post-merge", f"{reporoot}/.git/hooks/post-merge")
  210. if not os.path.exists(f"{constants.home}/.sentry/config.yml") or not os.path.exists(
  211. f"{constants.home}/.sentry/sentry.conf.py"
  212. ):
  213. proc.run((f"{venv_dir}/bin/sentry", "init", "--dev"))
  214. # Frontend engineers don't necessarily always have devservices running and
  215. # can configure to skip them to save on local resources
  216. if FRONTEND_ONLY:
  217. print("Skipping python migrations since SENTRY_DEVENV_FRONTEND_ONLY is set.")
  218. return 0
  219. # TODO: check healthchecks for redis and postgres to short circuit this
  220. proc.run(
  221. (
  222. f"{venv_dir}/bin/{repo}",
  223. "devservices",
  224. "up",
  225. "redis",
  226. "postgres",
  227. ),
  228. pathprepend=f"{reporoot}/.devenv/bin",
  229. exit=True,
  230. )
  231. if not run_procs(
  232. repo,
  233. reporoot,
  234. venv_dir,
  235. (
  236. (
  237. "python migrations",
  238. ("make", "apply-migrations"),
  239. {},
  240. ),
  241. ),
  242. verbose,
  243. ):
  244. return 1
  245. # faster prerequisite check than starting up sentry and running createuser idempotently
  246. stdout = proc.run(
  247. (
  248. "docker",
  249. "exec",
  250. "sentry_postgres",
  251. "psql",
  252. "sentry",
  253. "postgres",
  254. "-t",
  255. "-c",
  256. "select exists (select from auth_user where email = 'admin@sentry.io')",
  257. ),
  258. stdout=True,
  259. )
  260. if stdout != "t":
  261. proc.run(
  262. (
  263. f"{venv_dir}/bin/sentry",
  264. "createuser",
  265. "--superuser",
  266. "--email",
  267. "admin@sentry.io",
  268. "--password",
  269. "admin",
  270. "--no-input",
  271. )
  272. )
  273. return 0