We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f0bdd7 + 6bf0d72 commit 0a260deCopy full SHA for 0a260de
1 file changed
.circleci/config.yml
@@ -259,6 +259,10 @@ commands:
259
- run:
260
name: Recreate venv with glean_parser 19
261
command: |
262
+ # Img doesn't ship with venv; only install if missing.
263
+ if ! python3 -c "import ensurepip" 2>/dev/null; then
264
+ sudo apt-get update && sudo apt-get install -y python3-venv
265
+ fi
266
rm -rf .venv
267
python3 -m venv .venv
268
.venv/bin/pip install 'glean_parser~=19.0'
0 commit comments