mirror of
https://github.com/ceph/ceph
synced 2024-12-12 14:39:05 +00:00
cafbe1cf15
The git repo size is large and maybe the postBuffer size is not large enough and this will cause git commands' failure of '128'. Fixes: https://tracker.ceph.com/issues/59413 Signed-off-by: Xiubo Li <xiubli@redhat.com>
57 lines
915 B
Bash
Executable File
57 lines
915 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
# increase the cache size
|
|
sudo git config --global http.sslVerify false
|
|
sudo git config --global http.postBuffer 1048576000
|
|
|
|
# try it again if the clone is slow and the second time
|
|
retried=false
|
|
trap -- 'retry' EXIT
|
|
retry() {
|
|
rm -rf ceph
|
|
# double the timeout value
|
|
timeout 3600 git clone https://git.ceph.com/ceph.git
|
|
}
|
|
rm -rf ceph
|
|
timeout 1800 git clone https://git.ceph.com/ceph.git
|
|
trap - EXIT
|
|
cd ceph
|
|
|
|
versions=`seq 1 90`
|
|
|
|
for v in $versions
|
|
do
|
|
if [ $v -eq 48 ]; then
|
|
continue
|
|
fi
|
|
ver="v0.$v"
|
|
echo $ver
|
|
git reset --hard $ver
|
|
mkdir .snap/$ver
|
|
done
|
|
|
|
for v in $versions
|
|
do
|
|
if [ $v -eq 48 ]; then
|
|
continue
|
|
fi
|
|
ver="v0.$v"
|
|
echo checking $ver
|
|
cd .snap/$ver
|
|
git diff --exit-code
|
|
cd ../..
|
|
done
|
|
|
|
for v in $versions
|
|
do
|
|
if [ $v -eq 48 ]; then
|
|
continue
|
|
fi
|
|
ver="v0.$v"
|
|
rmdir .snap/$ver
|
|
done
|
|
|
|
echo OK
|