forked from Azure/azure-iot-sdk-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable amqp methods build in jenkins
- Loading branch information
1 parent
64e1603
commit 49b0c24
Showing
6 changed files
with
82 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
@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# Shared Assembly -- | ||
cd %build-root%\shared\build | ||
call build.cmd | ||
if errorlevel 1 goto :eof | ||
cd %build-root% | ||
|
||
REM -- C# Device SDK -- | ||
cd %build-root%\device\build | ||
call build.cmd --wip-use-c2d-amqp-methods | ||
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 -- C# E2E Tests -- | ||
cd %build-root%\e2e\build | ||
call build.cmd --wip-use-c2d-amqp-methods | ||
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% | ||
|
||
REM -- Run C# device SDK unit Tests -- | ||
cd %build-root%\device\tests\Microsoft.Azure.Devices.Client.Test\bin\Release | ||
mstest /TestContainer:Microsoft.Azure.Devices.Client.Test.dll | ||
if errorlevel 1 goto :eof | ||
cd %build-root% | ||
|
||
REM -- Run C# E2E Tests -- | ||
cd %build-root%\e2e\Microsoft.Azure.Devices.E2ETests\bin\Release | ||
mstest /TestContainer:Microsoft.Azure.Devices.E2ETests.dll | ||
if errorlevel 1 goto :eof | ||
cd %build-root% | ||
|
||
echo. | ||
echo C# build completed successfully | ||
echo. | ||
|