Skip to content

Commit 6297e70

Browse files
committed
debug 2
1 parent 8a2f1c6 commit 6297e70

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,19 @@ jobs:
5252
dry-run: false
5353
keep-unaffected-fuzz-targets: true
5454

55+
- name: What is on the disk (pwd)
56+
run: |
57+
echo '---------------------'
58+
pwd
59+
find . -type d
60+
echo '---------------------'
61+
62+
- name: What is on the disk (home)
63+
run: |
64+
echo '---------------------'
65+
find ~ -type d
66+
echo '---------------------'
67+
5568
# Archive the fuzzer output (which maintains permissions)
5669
- name: Create fuzz tar
5770
run: tar cvf fuzz.tar build-out/
@@ -85,6 +98,20 @@ jobs:
8598
oss-fuzz-project-name: 'curl'
8699
fuzz-seconds: 120
87100
dry-run: false
101+
102+
- name: What is on the disk (pwd)
103+
run: |
104+
echo '---------------------'
105+
pwd
106+
find . -type d
107+
echo '---------------------'
108+
109+
- name: What is on the disk (home)
110+
run: |
111+
echo '---------------------'
112+
find ~ -type d
113+
echo '---------------------'
114+
88115
- name: Upload Crash
89116
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
90117
if: ${{ failure() }}

0 commit comments

Comments
 (0)