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 22, 2025
1 parent cde279a commit 878b6e8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/lumigator_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
- name: Install python
run: uv python install

- 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 @@ -117,6 +122,11 @@ jobs:
run: source .venv/bin/activate && python -m ipykernel install --user --name=lumigator
working-directory: notebooks

- name: Create pip cache
run: |
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 878b6e8

Please sign in to comment.