blob: 275f17ac0db97db2c5546418bd09f50ec2a5abee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#!/usr/bin/env bash
usage()
{
echo "Usage: sync [-p] [-s]"
echo "Repository syncing script."
echo " -s Fetch source history from all configured remotes"
echo " (git fetch --all -p -v)"
echo " -p Restore all NuGet packages for the repository"
echo
echo "If no option is specified, then \"sync.sh -p -s\" is implied."
exit 1
}
working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
sync_log=$working_tree_root/sync.log
options="/nologo /v:minimal /clp:Summary /flp:v=detailed;Append;LogFile=$sync_log"
unprocessedBuildArgs=
echo "Running sync.sh $*" > $sync_log
# Parse arguments
if [ $# == 0 ]; then
sync_packages=true
sync_src=true
fi
while [[ $# > 0 ]]
do
opt="$1"
case $opt in
-h|--help)
usage
;;
-p)
sync_packages=true
;;
-s)
sync_src=true
;;
*)
unprocessedBuildArgs="$unprocessedBuildArgs $1"
esac
shift
done
echo "Running init-tools.sh"
$working_tree_root/init-tools.sh
if [ "$sync_src" == true ]; then
echo "Fetching git database from remote repos..."
git fetch --all -p -v >> $sync_log 2>&1
if [ $? -ne 0 ]; then
echo -e "\ngit fetch failed. Aborting sync." >> $sync_log
echo "ERROR: An error occurred while fetching remote source code; see $sync_log for more details."
exit 1
fi
fi
if [ "$sync_packages" == true ]; then
options="$options /t:RestoreNETCorePlatforms /p:RestoreDuringBuild=true"
echo "Restoring all packages..."
echo -e "\n$working_tree_root/Tools/dotnetcli/dotnet $working_tree_root/Tools/MSBuild.exe $working_tree_root/build.proj $options $unprocessedBuildArgs" >> $sync_log
$working_tree_root/Tools/dotnetcli/dotnet $working_tree_root/Tools/MSBuild.exe $working_tree_root/build.proj $options $unprocessedBuildArgs
if [ $? -ne 0 ]
then
echo -e "\nPackage restored failed. Aborting sync." >> $sync_log
echo "ERROR: An error occurred while syncing packages; see $sync_log for more details. There may have been networking problems, so please try again in a few minutes."
exit 1
fi
fi
echo "Sync completed successfully."
echo -e "\nSync completed successfully." >> $sync_log
exit 0
|