Skip to content

Commit aadc3ca

Browse files
authored
Merge pull request #672 from Piratux/fix-fuzzer
Fix fuzzer
2 parents 7016504 + 3fa4472 commit aadc3ca

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/fuzzer.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ jobs:
5959
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
6060
${{github.job}}-${{env.GODOT_BASE_BRANCH}}
6161
62+
# Fix the issue of running out of disk space during Compilation stage
63+
# Taken from here: https://github.com/orgs/community/discussions/26351#discussioncomment-3251595
64+
- name: Free disk space
65+
run: |
66+
sudo swapoff -a
67+
sudo rm -f /swapfile
68+
sudo apt-get clean
69+
docker rmi $(docker image ls -aq)
70+
df -h
71+
6272
# NO-PIE is for more detailed bactraces with line symbols
6373
- name: Compilation
6474
env:
@@ -107,7 +117,9 @@ jobs:
107117
uses: actions/checkout@v4
108118
with:
109119
repository: qarmin/Qarminer
110-
ref: ${{ env.GODOT_BASE_BRANCH }}
120+
# At the time of writing, qarmin did not put out later than 4.1 versions, but claims that it works with Godot versions up to 4.3+
121+
# See https://github.com/qarmin/Qarminer/issues/32
122+
ref: 4.1
111123
path: fuzzer
112124

113125
- name: Copy fuzzer settings

0 commit comments

Comments
 (0)