Skip to content

Commit

Permalink
Use virtual env for EE apps.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfitchett committed Oct 11, 2023
1 parent 043c29d commit 0503894
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/actions/setup-vro/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ runs:
python-version: "3.10"
cache: "pip"

- name: "Install Python dependencies"
- name: "Install CC Python dependencies"
shell: bash
run: |
pip install -r domain-cc/*/*/requirements.txt
pip install -r domain-ee/*/*/requirements.txt
- name: "Install EE - Max CFI App Python dependencies"
shell: bash
run: |
VENV_MAX_CFI=~/.virtualenvs/domain-ee-max-cfi-app
python3 -m venv ${VENV_MAX_CFI}
source ${VENV_MAX_CFI}/bin/activate
pip install -r domain-ee/ee-max-cfi-app/src/requirements.txt

0 comments on commit 0503894

Please sign in to comment.