123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- #!/bin/bash
- # NOTE: This file is sourced in CI across different repos (e.g. snuba),
- # thus, renaming this file or any functions can break CI!
- #
- # Module containing code shared across various shell scripts
- # Execute functions from this module via the script do.sh
- # shellcheck disable=SC2034 # Unused variables
- # shellcheck disable=SC2001 # https://github.com/koalaman/shellcheck/wiki/SC2001
- # This block is a safe-guard since in CI calling tput will fail and abort scripts
- if [ -z "${CI+x}" ]; then
- bold="$(tput bold)"
- red="$(tput setaf 1)"
- green="$(tput setaf 2)"
- yellow="$(tput setaf 3)"
- reset="$(tput sgr0)"
- fi
- venv_name=".venv"
- # XDG paths' standardized defaults:
- # (see https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables )
- export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
- export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
- export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
- export XDG_DATA_DIRS="${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}"
- export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:-/etc/xdg}"
- export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
- export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-/var/run}"
- # Check if a command is available
- require() {
- command -v "$1" >/dev/null 2>&1
- }
- query-valid-python-version() {
- python_version=$(python3 -V 2>&1 | awk '{print $2}')
- if [[ -n "${SENTRY_PYTHON_VERSION:-}" ]]; then
- if [ "$python_version" != "$SENTRY_PYTHON_VERSION" ]; then
- cat <<EOF
- ${red}${bold}
- ERROR: You have explicitly set a non-recommended Python version (${SENTRY_PYTHON_VERSION}),
- but it doesn't match the value of python's version: ${python_version}
- You should create a new ${SENTRY_PYTHON_VERSION} virtualenv by running "rm -rf ${venv_name} && direnv allow".
- ${reset}
- EOF
- return 1
- else
- cat <<EOF
- ${yellow}${bold}
- You have explicitly set a non-recommended Python version (${SENTRY_PYTHON_VERSION}). You're on your own.
- ${reset}
- EOF
- return 0
- fi
- else
- minor=$(echo "${python_version}" | sed 's/[0-9]*\.\([0-9]*\)\.\([0-9]*\)/\1/')
- patch=$(echo "${python_version}" | sed 's/[0-9]*\.\([0-9]*\)\.\([0-9]*\)/\2/')
- if [ "$minor" -ne 11 ] || [ "$patch" -lt 6 ]; then
- cat <<EOF
- ${red}${bold}
- ERROR: You're running a virtualenv with Python ${python_version}.
- We only support >= 3.11.6, < 3.12.
- Either run "rm -rf ${venv_name} && direnv allow" to
- OR set SENTRY_PYTHON_VERSION=${python_version} to an .env file to bypass this check."
- EOF
- return 1
- fi
- fi
- }
- sudo-askpass() {
- if [ -z "${sudo-askpass-x}" ]; then
- sudo --askpass "$@"
- else
- sudo "$@"
- fi
- }
- # needed by getsentry make
- pip-install() {
- pip install --constraint "${HERE}/../requirements-dev-frozen.txt" "$@"
- }
- # needed by getsentry make
- upgrade-pip() {
- pip-install pip
- }
- setup-git-config() {
- git config --local branch.autosetuprebase always
- git config --local core.ignorecase false
- git config --local blame.ignoreRevsFile .git-blame-ignore-revs
- }
- setup-git() {
- setup-git-config
- # if hooks are explicitly turned off do nothing
- if [[ "$(git config core.hooksPath)" == '/dev/null' ]]; then
- echo "--> core.hooksPath set to /dev/null. Skipping git hook setup"
- echo ""
- return
- fi
- echo "--> Installing git hooks"
- mkdir -p .git/hooks && cd .git/hooks && ln -sf ../../config/hooks/* ./ && cd - || exit
- .venv/bin/pre-commit install --install-hooks
- }
- node-version-check() {
- # Checks to see if node's version matches the one specified in package.json for Volta.
- node -pe "process.exit(Number(!(process.version == 'v' + require('./.volta.json').volta.node )))" ||
- (
- echo 'Unexpected node version. Recommended to use https://github.com/volta-cli/volta'
- echo 'Run `volta install node` and `volta install yarn` to update your toolchain.'
- echo 'If you do not have volta installed run `curl https://get.volta.sh | bash` or visit https://volta.sh'
- exit 1
- )
- }
- create-db() {
- container_name=${POSTGRES_CONTAINER:-sentry_postgres}
- echo "--> Creating 'sentry' database"
- docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 sentry || true
- echo "--> Creating 'control' and 'region' database"
- docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 control || true
- docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 region || true
- }
- build-platform-assets() {
- echo "--> Building platform assets"
- echo "from sentry.utils.integrationdocs import sync_docs; sync_docs(quiet=True)" | sentry exec
- # make sure this didn't silently do nothing
- test -f src/sentry/integration-docs/android.json
- }
- clean() {
- echo "--> Cleaning static cache"
- rm -rf dist/* src/sentry/static/sentry/dist/*
- echo "--> Cleaning integration docs cache"
- rm -rf src/sentry/integration-docs
- echo "--> Cleaning pyc files"
- find . -name "*.pyc" -delete
- echo "--> Cleaning python build artifacts"
- rm -rf build/ dist/ src/sentry/assets.json
- echo ""
- }
- drop-db() {
- container_name=${POSTGRES_CONTAINER:-sentry_postgres}
- echo "--> Dropping existing 'sentry' database"
- docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres sentry
- echo "--> Dropping 'control' and 'region' database"
- docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres control
- docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres region
- }
- reset-db() {
- drop-db
- devenv sync
- echo 'Finished resetting database. To load mock data, run `./bin/load-mocks`'
- }
- direnv-help() {
- cat >&2 <<EOF
- If you're a Sentry employee and you're stuck or have questions, ask in #discuss-dev-infra.
- If you're not, please file an issue under https://github.com/getsentry/sentry/issues/new/choose and mention @getsentry/owners-sentry-dev
- You can configure the behaviour of direnv by adding the following variables to a .env file:
- - SENTRY_DIRENV_DEBUG=1: This will allow printing debug messages
- - SENTRY_DEVENV_NO_REPORT=1: Do not report development environment errors to Sentry.io
- EOF
- }
|