Skip to content

Commit 082dc35

Browse files
authored
Workaround sporadic git submodule failure (#4349)
This is to avoid sporadic failures when trying to download the fuzzing corpus for s2n-quic (a Kani submodule). See https://github.com/model-checking/kani/actions/runs/17577959149/job/49927516847?pr=4348 for an example of such a run. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
1 parent 7ea1006 commit 082dc35

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,7 @@ runs:
3737
run: |
3838
cd ${{ inputs.kani_dir }}
3939
git config --global --add safe.directory $(pwd)
40-
git submodule update --init --depth 1
40+
# Workaround for occasionally failing to copy a file in s2n-quic that we
41+
# don't actually care about
42+
GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --depth 1
4143
shell: bash

0 commit comments

Comments
 (0)