Skip to content

Commit 8361255

Browse files
committed
Do not store eventlogs to avoid out of disk space
1 parent 3b1cf9c commit 8361255

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/bench.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ jobs:
151151
path: benchmark-artifacts.tar.gz
152152

153153
- name: tar benchmarking logs
154-
run: find bench-results -name "*.log" -or -name "*.eventlog" -or -name "*.hp" | xargs tar -czf benchmark-logs.tar.gz
154+
# We dont' store the eventlogs because the CI workers risk running out of disk space
155+
run: find bench-results -name "*.log" -or -name "*.hp" | xargs tar -czf benchmark-logs.tar.gz
155156

156157
- name: Archive benchmark logs
157158
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)