File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,10 @@ function fetch_github_commit_archive {
48
48
rm $cached
49
49
}
50
50
51
- included=" src/llvm-project src/doc/book src/doc/rust-by-example"
51
+ # Archive downloads are temporarily disabled due to sudden 504
52
+ # gateway timeout errors.
53
+ # included="src/llvm-project src/doc/book src/doc/rust-by-example"
54
+ included=" "
52
55
modules=" $( git config --file .gitmodules --get-regexp ' \.path$' | cut -d' ' -f2) "
53
56
modules=($modules )
54
57
use_git=" "
@@ -71,10 +74,10 @@ for i in ${!modules[@]}; do
71
74
done
72
75
retry sh -c " git submodule deinit -f $use_git && \
73
76
git submodule sync && \
74
- git submodule update -j 16 --init --recursive $use_git "
75
- STATUS=0
76
- for pid in ${bg_pids[*]}
77
- do
78
- wait $pid || STATUS=1
79
- done
80
- exit ${STATUS}
77
+ git submodule update -j 16 --init --recursive --depth 1 $use_git "
78
+ # STATUS=0
79
+ # for pid in ${bg_pids[*]}
80
+ # do
81
+ # wait $pid || STATUS=1
82
+ # done
83
+ # exit ${STATUS}
You can’t perform that action at this time.
0 commit comments