Skip to content

Commit

Permalink
Setup pip cache during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
javiermtorres committed Jan 29, 2025
1 parent 781812e commit 34fd8ca
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/lumigator_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ jobs:
run: |
mkdir -p ${HOME}/.cache/huggingface
chmod -R 777 ${HOME}/.cache/huggingface
- name: Create pip cache
run: |
mkdir -p /tmp/ray_pip_cache
chmod -R 777 /tmp/ray_pip_cache
- name: Spinning up containers for the tests
run: make start-lumigator-build
Expand Down Expand Up @@ -122,10 +126,10 @@ jobs:
run: source .venv/bin/activate && python -m ipykernel install --user --name=lumigator
working-directory: notebooks

- name: Create HF cache
- name: Create pip cache
run: |
mkdir -p ${HOME}/.cache/huggingface
chmod -R 777 ${HOME}/.cache/huggingface
mkdir -p /tmp/ray_pip_cache
chmod -R 777 /tmp/ray_pip_cache
- name: Setup containers
run: make start-lumigator-build
Expand Down

0 comments on commit 34fd8ca

Please sign in to comment.