Skip to content

Commit

Permalink
Fix CI (#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Feb 6, 2025
1 parent 2920e74 commit 2a2ca6a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker images -a -q)
images=$(docker images -a -q)
if [ -n "$images" ]; then
docker rmi $images
fi
df -h
- name: Setup Python environment
Expand Down

0 comments on commit 2a2ca6a

Please sign in to comment.