From ba1c82d31c299b53ee056b4e38e95330e8821275 Mon Sep 17 00:00:00 2001 From: Pierre Cauchois Date: Tue, 15 Nov 2016 17:55:45 -0800 Subject: [PATCH] Import build scripts --- jenkins/windows_csharp.cmd | 26 ++++++++++++++++++++++++++ jenkins/windows_csharp_mf.cmd | 14 ++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 jenkins/windows_csharp.cmd create mode 100644 jenkins/windows_csharp_mf.cmd diff --git a/jenkins/windows_csharp.cmd b/jenkins/windows_csharp.cmd new file mode 100644 index 0000000000..ef24117fb0 --- /dev/null +++ b/jenkins/windows_csharp.cmd @@ -0,0 +1,26 @@ +@REM Copyright (c) Microsoft. All rights reserved. +@REM Licensed under the MIT license. See LICENSE file in the project root for full license information. + +setlocal + +set build-root=%~dp0.. +rem // resolve to fully qualified path +for %%i in ("%build-root%") do set build-root=%%~fi + +REM -- C# -- +cd %build-root%\device\build +call build.cmd +if errorlevel 1 goto :eof +cd %build-root% + +REM -- C# Service SDK -- +cd %build-root%\service\build +call build.cmd +if errorlevel 1 goto :eof +cd %build-root% + +REM -- Device Explorer -- +cd %build-root%\tools\DeviceExplorer\build +call build.cmd +if errorlevel 1 goto :eof +cd %build-root% \ No newline at end of file diff --git a/jenkins/windows_csharp_mf.cmd b/jenkins/windows_csharp_mf.cmd new file mode 100644 index 0000000000..59a8e81d47 --- /dev/null +++ b/jenkins/windows_csharp_mf.cmd @@ -0,0 +1,14 @@ +@REM Copyright (c) Microsoft. All rights reserved. +@REM Licensed under the MIT license. See LICENSE file in the project root for full license information. + +setlocal + +set build-root=%~dp0.. +rem // resolve to fully qualified path +for %%i in ("%build-root%") do set build-root=%%~fi + +REM -- C# -- +cd %build-root%\device\build +call build_mf.cmd +if errorlevel 1 goto :eof +cd %build-root%