Skip to content

Commit

Permalink
chore: install dev deps for downloading models during e2e workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
YrrepNoj committed Jul 26, 2024
1 parent 3a5d7d7 commit 4905109
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/e2e-llama-cpp-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
python-version-file: 'pyproject.toml'

- name: Install Python Deps
run: python -m pip install "."
run: |
python -m pip install "."
python -m pip install -U "huggingface_hub[cli,hf_transfer]"
- name: Setup UDS Environment
uses: defenseunicorns/uds-common/.github/actions/setup@05f42bb3117b66ebef8c72ae050b34bce19385f5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-text-embeddings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ jobs:
python-version-file: 'pyproject.toml'

- name: Install Python Deps
run: python -m pip install "."
run: |
python -m pip install "."
python -m pip install -U "huggingface_hub[cli,hf_transfer]"
- name: Setup UDS Environment
uses: defenseunicorns/uds-common/.github/actions/setup@05f42bb3117b66ebef8c72ae050b34bce19385f5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-vllm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ jobs:
python-version-file: 'pyproject.toml'

- name: Install Python Deps
run: python -m pip install "."
run: |
python -m pip install "."
python -m pip install -U "huggingface_hub[cli,hf_transfer]"
- name: Setup UDS Environment
uses: defenseunicorns/uds-common/.github/actions/setup@05f42bb3117b66ebef8c72ae050b34bce19385f5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/e2e-whisper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
python-version-file: 'pyproject.toml'

- name: Install Python Deps
run: python -m pip install "."
run: |
python -m pip install "."
python -m pip install -U ctranslate2 "transformers[torch]"
- name: Setup UDS Environment
uses: defenseunicorns/uds-common/.github/actions/setup@05f42bb3117b66ebef8c72ae050b34bce19385f5
Expand Down

0 comments on commit 4905109

Please sign in to comment.