summaryrefslogtreecommitdiff
path: root/sync.cmd
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2016-04-27 14:35:45 -0700
committerwtgodbe <wigodbe@microsoft.com>2016-05-17 14:06:39 -0700
commit8568bf1d9722657c602a1f1fe0148e28a93ea8ce (patch)
treed784a4438e3fe7b74106f1d3e82aa88889024fc4 /sync.cmd
parent41a4ad5054cf877db6aa331855b43ad8678a93ad (diff)
downloadcoreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.tar.gz
coreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.tar.bz2
coreclr-8568bf1d9722657c602a1f1fe0148e28a93ea8ce.zip
Add dev workflow scripts for build pipeline
Diffstat (limited to 'sync.cmd')
-rw-r--r--sync.cmd84
1 files changed, 84 insertions, 0 deletions
diff --git a/sync.cmd b/sync.cmd
new file mode 100644
index 0000000000..70bde8ce87
--- /dev/null
+++ b/sync.cmd
@@ -0,0 +1,84 @@
+@if "%_echo%" neq "on" echo off
+setlocal EnableDelayedExpansion
+
+set synclog=sync.log
+echo Running Sync.cmd %* > %synclog%
+
+set options=/nologo /v:minimal /clp:Summary /flp:v=detailed;Append;LogFile=%synclog%
+set unprocessedBuildArgs=
+set allargs=%*
+set thisArgs=
+
+set src=false
+set packages=false
+
+if [%1]==[] (
+ set src=true
+ set packages=true
+ goto Begin
+)
+
+:Loop
+if [%1]==[] goto Begin
+
+if /I [%1] == [/?] goto Usage
+if /I [%1] == [/help] goto Usage
+
+if /I [%1] == [/p] (
+ set packages=true
+ set thisArgs=!thisArgs!%1
+ goto Next
+)
+
+if /I [%1] == [/s] (
+ set src=true
+ set thisArgs=!thisArgs!%1
+ goto Next
+)
+
+set unprocessedBuildArgs=!unprocessedBuildArgs! %1
+
+:Next
+shift /1
+goto Loop
+
+:Begin
+echo Running init-tools.cmd
+call %~dp0init-tools.cmd
+
+if [%src%] == [true] (
+ echo Fetching git database from remote repos ...
+ call git fetch --all -p -v >> %synclog% 2>&1
+ if NOT [!ERRORLEVEL!]==[0] (
+ echo ERROR: An error occurred while fetching remote source code, see %synclog% for more details.
+ exit /b 1
+ )
+)
+
+set targets=RestoreNETCorePlatforms
+
+if [%packages%] == [true] (
+ set options=!options! /t:!targets! /p:RestoreDuringBuild=true
+ echo msbuild.exe %~dp0build.proj !options! !unprocessedBuildArgs! >> %synclog%
+ call msbuild.exe %~dp0build.proj !options! !unprocessedBuildArgs!
+ if NOT [!ERRORLEVEL!]==[0] (
+ echo ERROR: An error occurred while syncing packages, see %synclog% for more details. There may have been networking problems so please try again in a few minutes.
+ exit /b 1
+ )
+)
+
+echo Done Syncing.
+exit /b 0
+
+goto :EOF
+
+:Usage
+echo.
+echo Repository syncing script.
+echo.
+echo Options:
+echo /s - Fetches source history from all configured remotes
+echo (git fetch --all -p -v)
+echo /p - Restores all nuget packages for repository
+echo.
+echo If no option is specified then sync.cmd /s /p is implied. \ No newline at end of file