sync.py 9.0 KB

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