123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- from __future__ import annotations
- import os
- import shlex
- import subprocess
- from devenv import constants
- from devenv.lib import colima, config, fs, limactl, proc, venv
- # TODO: need to replace this with a nicer process executor in devenv.lib
- def run_procs(
- repo: str,
- reporoot: str,
- venv_path: str,
- _procs: tuple[tuple[str, tuple[str, ...], dict[str, str]], ...],
- verbose: bool = False,
- ) -> bool:
- procs: list[tuple[str, tuple[str, ...], subprocess.Popen[bytes]]] = []
- stdout = subprocess.PIPE if not verbose else None
- stderr = subprocess.STDOUT if not verbose else None
- for name, cmd, extra_env in _procs:
- print(f"⏳ {name}")
- if constants.DEBUG:
- proc.xtrace(cmd)
- env = {
- **constants.user_environ,
- **proc.base_env,
- "VIRTUAL_ENV": venv_path,
- "PATH": f"{venv_path}/bin:{reporoot}/.devenv/bin:{proc.base_path}",
- }
- if extra_env:
- env = {**env, **extra_env}
- procs.append(
- (
- name,
- cmd,
- subprocess.Popen(
- cmd,
- stdout=stdout,
- stderr=stderr,
- env=env,
- cwd=reporoot,
- ),
- )
- )
- all_good = True
- for name, final_cmd, p in procs:
- out, _ = p.communicate()
- if p.returncode != 0:
- all_good = False
- out_str = f"Output:\n{out.decode()}" if not verbose else ""
- print(
- f"""
- ❌ {name}
- failed command (code {p.returncode}):
- {shlex.join(final_cmd)}
- {out_str}
- """
- )
- else:
- print(f"✅ {name}")
- return all_good
- def main(context: dict[str, str]) -> int:
- repo = context["repo"]
- reporoot = context["reporoot"]
- repo_config = config.get_config(f"{reporoot}/devenv/config.ini")
- # TODO: context["verbose"]
- verbose = os.environ.get("SENTRY_DEVENV_VERBOSE") is not None
- FRONTEND_ONLY = os.environ.get("SENTRY_DEVENV_FRONTEND_ONLY") is not None
- # repo-local devenv needs to update itself first with a successful sync
- # so it'll take 2 syncs to get onto devenv-managed node, it is what it is
- try:
- from devenv.lib import node
- node.install(
- repo_config["node"]["version"],
- repo_config["node"][constants.SYSTEM_MACHINE],
- repo_config["node"][f"{constants.SYSTEM_MACHINE}_sha256"],
- reporoot,
- )
- node.install_yarn(repo_config["node"]["yarn_version"], reporoot)
- except ImportError:
- from devenv.lib import volta
- volta.install(reporoot)
- # no more imports from devenv past this point! if the venv is recreated
- # then we won't have access to devenv libs until it gets reinstalled
- # venv's still needed for frontend because repo-local devenv and pre-commit
- # exist inside it
- venv_dir, python_version, requirements, editable_paths, bins = venv.get(reporoot, repo)
- url, sha256 = config.get_python(reporoot, python_version)
- print(f"ensuring {repo} venv at {venv_dir}...")
- venv.ensure(venv_dir, python_version, url, sha256)
- if constants.DARWIN:
- try:
- colima.install(
- repo_config["colima"]["version"],
- repo_config["colima"][constants.SYSTEM_MACHINE],
- repo_config["colima"][f"{constants.SYSTEM_MACHINE}_sha256"],
- reporoot,
- )
- except TypeError:
- # this is needed for devenv <=1.4.0,>1.2.3 to finish syncing and therefore update itself
- colima.install(
- repo_config["colima"]["version"],
- repo_config["colima"][constants.SYSTEM_MACHINE],
- repo_config["colima"][f"{constants.SYSTEM_MACHINE}_sha256"],
- )
- # TODO: move limactl version into per-repo config
- try:
- limactl.install(reporoot)
- except TypeError:
- # this is needed for devenv <=1.4.0,>1.2.3 to finish syncing and therefore update itself
- limactl.install()
- if not run_procs(
- repo,
- reporoot,
- venv_dir,
- (
- # TODO: devenv should provide a job runner (jobs run in parallel, tasks run sequentially)
- (
- "python dependencies (1/4)",
- (
- # upgrading pip first
- "pip",
- "install",
- "--constraint",
- "requirements-dev-frozen.txt",
- "pip",
- ),
- {},
- ),
- ),
- verbose,
- ):
- return 1
- if not run_procs(
- repo,
- reporoot,
- venv_dir,
- (
- (
- # Spreading out the network load by installing js,
- # then py in the next batch.
- "javascript dependencies (1/1)",
- (
- "yarn",
- "install",
- "--frozen-lockfile",
- "--no-progress",
- "--non-interactive",
- ),
- {
- "NODE_ENV": "development",
- },
- ),
- (
- "python dependencies (2/4)",
- (
- "pip",
- "uninstall",
- "-qqy",
- "djangorestframework-stubs",
- "django-stubs",
- ),
- {},
- ),
- ),
- verbose,
- ):
- return 1
- if not run_procs(
- repo,
- reporoot,
- venv_dir,
- (
- # could opt out of syncing python if FRONTEND_ONLY but only if repo-local devenv
- # and pre-commit were moved to inside devenv and not the sentry venv
- (
- "python dependencies (3/4)",
- (
- "pip",
- "install",
- "--constraint",
- "requirements-dev-frozen.txt",
- "-r",
- "requirements-dev-frozen.txt",
- ),
- {},
- ),
- ),
- verbose,
- ):
- return 1
- if not run_procs(
- repo,
- reporoot,
- venv_dir,
- (
- (
- "python dependencies (4/4)",
- ("python3", "-m", "tools.fast_editable", "--path", "."),
- {},
- ),
- ("pre-commit dependencies", ("pre-commit", "install", "--install-hooks", "-f"), {}),
- ),
- verbose,
- ):
- return 1
- fs.ensure_symlink("../../config/hooks/post-merge", f"{reporoot}/.git/hooks/post-merge")
- if not os.path.exists(f"{constants.home}/.sentry/config.yml") or not os.path.exists(
- f"{constants.home}/.sentry/sentry.conf.py"
- ):
- proc.run((f"{venv_dir}/bin/sentry", "init", "--dev"))
- # Frontend engineers don't necessarily always have devservices running and
- # can configure to skip them to save on local resources
- if FRONTEND_ONLY:
- print("Skipping python migrations since SENTRY_DEVENV_FRONTEND_ONLY is set.")
- return 0
- # TODO: check healthchecks for redis and postgres to short circuit this
- proc.run(
- (
- f"{venv_dir}/bin/{repo}",
- "devservices",
- "up",
- "redis",
- "postgres",
- ),
- pathprepend=f"{reporoot}/.devenv/bin",
- exit=True,
- )
- if not run_procs(
- repo,
- reporoot,
- venv_dir,
- (
- (
- "python migrations",
- ("make", "apply-migrations"),
- {},
- ),
- ),
- verbose,
- ):
- return 1
- # faster prerequisite check than starting up sentry and running createuser idempotently
- stdout = proc.run(
- (
- "docker",
- "exec",
- "sentry_postgres",
- "psql",
- "sentry",
- "postgres",
- "-t",
- "-c",
- "select exists (select from auth_user where email = 'admin@sentry.io')",
- ),
- stdout=True,
- )
- if stdout != "t":
- proc.run(
- (
- f"{venv_dir}/bin/sentry",
- "createuser",
- "--superuser",
- "--email",
- "admin@sentry.io",
- "--password",
- "admin",
- "--no-input",
- )
- )
- return 0
|