Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

touch up envrc, venv creation #235

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
#!/bin/bash
# shellcheck disable=SC1091
if [[ -f .env ]]; then
dotenv .env
dotenv .env
fi

if [ ! -d .venv ]; then
echo "warning: creating virtualenv for the first time"
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r requirements-dev.txt
else
source .venv/bin/activate
unset PS1
export REPO=$PWD
export VIRTUAL_ENV=$REPO/.venv
path_add PATH $VIRTUAL_ENV/bin
if [ ! -x "$VIRTUAL_ENV/bin/devservices" ]; then
printf >&2 '\033[33mNOTE: please run `make`\033[m'
fi
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: python -m build

- name: Cache dist
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: dist
key: devservices-dist-${{ github.sha }}
Expand Down Expand Up @@ -70,32 +70,31 @@ jobs:
cp $BINARY_PATH binaries/${{ matrix.asset_name }}

- name: Cache binary
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: binaries/${{ matrix.asset_name }}
key: ${{ matrix.asset_name }}-${{ github.sha }}


upload-artifacts:
name: Upload build artifacts
runs-on: ubuntu-22.04
needs: [dist, binary]
if: github.event_name != 'pull_request'
steps:
- name: Restore dist cache
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: dist
key: devservices-dist-${{ github.sha }}

- name: Restore Linux binary cache
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: binaries/devservices-linux
key: devservices-linux-${{ github.sha }}

- name: Restore macOS binary cache
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: binaries/devservices-darwin
key: devservices-darwin-${{ github.sha }}
Expand Down
7 changes: 7 additions & 0 deletions lib/make/venv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
set -euxo pipefail
rm -rf venv .venv.tmp
python3 -m venv .venv.tmp
./.venv.tmp/bin/pip install -e '.[dev]' -c requirements.txt -c requirements-dev.txt
mv .venv.tmp .venv
python3 -m venv .venv # handle relocation
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--index-url https://pypi.devinfra.sentry.io/simple
pyyaml==6.0.1
pyyaml==6.0.2
packaging==24.0
sentry-devenv==1.8.0
sentry-sdk==2.20.0
Loading