Skip to content

Commit

Permalink
🐛 fix github actions not enough space
Browse files Browse the repository at this point in the history
  • Loading branch information
AmineDjeghri committed Dec 7, 2024
1 parent fae32bd commit 222078b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ai_evaluation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
shell: bash
run: |
make install-dev
make clean-uv-cache
- name: Install NPM dependencies
shell: bash
run: |
Expand Down
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,14 @@ install-npm-dependencies: install-nvm

####### local CI / CD ########
# uv caching :
cache-uv:
@echo "${YELLOW}=========> Caching uv...${NC}"
@$(UV) cache prune --ci
prune-uv:
@echo "${YELLOW}=========> Prune uv cache...${NC}"
@$(UV) cache prune
# clean uv caching
clean-uv-cache:
@echo "${YELLOW}=========> Cleaning uv cache...${NC}"
@$(UV) cache clean

# Github actions locally
install-act:
@echo "${YELLOW}=========> Installing github actions act to test locally${NC}"
Expand Down

0 comments on commit 222078b

Please sign in to comment.