Skip to content

Commit be44dbf

Browse files
committed
Do not clone Kani's submodules
This is to avoid sporadic failures when trying to download the fuzzing corpus for s2n-quic (a Kani submodule).
1 parent 8de7d8f commit be44dbf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/run-kani.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ setup_kani_repo() {
132132

133133
git fetch --depth 1 origin "$commit" --quiet
134134
git checkout "$commit" --quiet
135-
git submodule update --init --recursive --depth 1 --quiet
135+
# We don't actually need any of Kani's git submodules in this repository
136+
# git submodule update --init --recursive --depth 1 --quiet
136137
popd > /dev/null
137138
}
138139

0 commit comments

Comments
 (0)