From 878b6e8b723602f3cc3afa1ce7f8982b0ad4d694 Mon Sep 17 00:00:00 2001 From: Javier Torres Date: Wed, 22 Jan 2025 17:29:57 +0100 Subject: [PATCH] Setup pip cache during CI --- .github/workflows/lumigator_pipeline.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/lumigator_pipeline.yaml b/.github/workflows/lumigator_pipeline.yaml index befe859b0..59131f18d 100644 --- a/.github/workflows/lumigator_pipeline.yaml +++ b/.github/workflows/lumigator_pipeline.yaml @@ -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 @@ -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