From 7e017a90551ec770d8f3d055ee9ed060219d47d8 Mon Sep 17 00:00:00 2001 From: Steve Bohlen Date: Fri, 16 Jan 2015 11:02:11 -0500 Subject: [PATCH] introduce cmd file for CI server (primarily to NOT pipe output to log file so that it appears on CI dashboard properly) --- Build-ci.cmd | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Build-ci.cmd diff --git a/Build-ci.cmd b/Build-ci.cmd new file mode 100644 index 00000000..1249c9ff --- /dev/null +++ b/Build-ci.cmd @@ -0,0 +1,23 @@ +@echo off +cd build-support +call set-nant-config-per-processor-architecture.cmd +cd .. +@echo . +@echo .. +@echo ... +@echo Running full Build Script, capturing output to buildlog.txt file... +@echo Start Time: %time% +build-support\tools\nant\bin\nant -D:test.withcoverage=false %1 %2 %3 %4 %5 %6 %7 %8 %9 +@echo . +@echo .. +@echo ... +@echo Launching text file viewer to display buildlog.txt contents... +start "ignored but required placeholder window title argument" buildlog.txt +@echo . +@echo .. +@echo ... +@echo ************************ +@echo Build Complete! +@echo ************************ +@echo End Time: %time% +@echo