Skip to content

Commit 76fb807

Browse files
authored
Merge pull request #69 from lf-lang/68-pip-cache-issue-in-ci
Purge pip cache before installing dependencies
2 parents d635a67 + 7b5552f commit 76fb807

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/benchmark-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
with:
4040
python-version: '3.10'
4141
- name: Install Python dependencies
42-
run: pip3 install -r runner/requirements.txt
42+
run: |
43+
python -m pip cache purge
44+
pip3 install -r runner/requirements.txt
4345
- name: Build lfc
4446
run: |
4547
cd lf

0 commit comments

Comments
 (0)