Skip to content

Commit

Permalink
Update benchmarks.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Feb 3, 2025
1 parent 2920e74 commit 04f48b0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Fuzzers+Benchmarks
on:
pull_request:
paths:
paths:d
- 'docker/**' # Base image changes.
- 'fuzzers/**' # Changes to fuzzers themselves.
- 'benchmarks/**' # Changes to benchmarks.
Expand Down 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 04f48b0

Please sign in to comment.