We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2920e74 commit 04f48b0Copy full SHA for 04f48b0
.github/workflows/benchmarks.yml
@@ -1,7 +1,7 @@
1
name: Fuzzers+Benchmarks
2
on:
3
pull_request:
4
- paths:
+ paths:d
5
- 'docker/**' # Base image changes.
6
- 'fuzzers/**' # Changes to fuzzers themselves.
7
- 'benchmarks/**' # Changes to benchmarks.
@@ -58,7 +58,10 @@ jobs:
58
sudo swapoff -a
59
sudo rm -f /swapfile
60
sudo apt clean
61
- docker rmi $(docker images -a -q)
+ images=$(docker images -a -q)
62
+ if [ -n "$images" ]; then
63
+ docker rmi $images
64
+ fi
65
df -h
66
67
- name: Setup Python environment
0 commit comments