Skip to content

Commit

Permalink
Appveyor and unit test updates (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtaubensee authored May 27, 2017
1 parent 1b3abce commit 06381f8
Show file tree
Hide file tree
Showing 28 changed files with 1,911 additions and 1,700 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,8 @@ Buildx86retail.dat
**/.vscode/

# Typescript installed definition files for modules
**/typings/
**/typings/

#OpenCover
/build/OpenCoverReport/*
/build/coverage.xml
11 changes: 2 additions & 9 deletions Microsoft.Azure.EventHubs.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.3
VisualStudioVersion = 15.0.26430.6
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{08E028C1-29E7-42B5-871F-C911DB93E78A}"
EndProject
Expand All @@ -14,12 +14,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{AF49C862-C
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.EventHubs", "src\Microsoft.Azure.EventHubs\Microsoft.Azure.EventHubs.csproj", "{126D946D-CE0F-4F14-9F13-8FD7098B81D8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.EventHubs.UnitTests", "test\Microsoft.Azure.EventHubs.UnitTests\Microsoft.Azure.EventHubs.UnitTests.csproj", "{154F7B4C-B998-4FA0-933F-F34DB0CA9B88}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.EventHubs.Tests", "test\Microsoft.Azure.EventHubs.Tests\Microsoft.Azure.EventHubs.Tests.csproj", "{154F7B4C-B998-4FA0-933F-F34DB0CA9B88}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.EventHubs.Processor", "src\Microsoft.Azure.EventHubs.Processor\Microsoft.Azure.EventHubs.Processor.csproj", "{8C89967A-4E1F-46B0-8458-81B545C822B2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.EventHubs.Processor.UnitTests", "test\Microsoft.Azure.EventHubs.Processor.UnitTests\Microsoft.Azure.EventHubs.Processor.UnitTests.csproj", "{F7F892F4-4490-4BC9-BB18-F42F2C85E345}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -38,10 +36,6 @@ Global
{8C89967A-4E1F-46B0-8458-81B545C822B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C89967A-4E1F-46B0-8458-81B545C822B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C89967A-4E1F-46B0-8458-81B545C822B2}.Release|Any CPU.Build.0 = Release|Any CPU
{F7F892F4-4490-4BC9-BB18-F42F2C85E345}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F7F892F4-4490-4BC9-BB18-F42F2C85E345}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7F892F4-4490-4BC9-BB18-F42F2C85E345}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7F892F4-4490-4BC9-BB18-F42F2C85E345}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -50,6 +44,5 @@ Global
{126D946D-CE0F-4F14-9F13-8FD7098B81D8} = {08E028C1-29E7-42B5-871F-C911DB93E78A}
{154F7B4C-B998-4FA0-933F-F34DB0CA9B88} = {AF49C862-CB78-4110-A275-8111B387805D}
{8C89967A-4E1F-46B0-8458-81B545C822B2} = {08E028C1-29E7-42B5-871F-C911DB93E78A}
{F7F892F4-4490-4BC9-BB18-F42F2C85E345} = {AF49C862-CB78-4110-A275-8111B387805D}
EndGlobalSection
EndGlobal
40 changes: 21 additions & 19 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,30 @@ branches:
only:
- master
- dev
skip_tags: true
matrix:
fast_finish: true
image: Visual Studio 2017
environment:
ClientSecret:
azure-event-hubs-dotnet/ClientSecret:
secure: /8H7C81iNS+gVi7LhJCEOPUlNaa30y4KcY4nw/g2C4HGxOv6SrcroyDvMnqD+5GN
TenantId:
azure-event-hubs-dotnet/TenantId:
secure: xohonz/X8PPLOVIdT3ch2C5XeSa30RwR6NuXFh4e85svXT1mJNGGO1HQEGxCk3wp
AppId:
azure-event-hubs-dotnet/AppId:
secure: c+H140oRJfHtmFHZxSRLWocv5AU0q33X7kgMcTcXxhJvtVhk2WAk1dRQkSN+SyoA
CodeCov:
secure: pmpPpo9faBysYDhkDrKv4zOm1UOmdpga7+sZEcjYOITwzph24z947KugpQMLMGrx
before_build:
- ps: >-
. .\build\AppveyorBuildFunctions.ps1
matrix:
# First build
- DotNetRunTime: netcoreapp1.0
azure-event-hubs-dotnet/CodeCovSecret:
secure: pmpPpo9faBysYDhkDrKv4zOm1UOmdpga7+sZEcjYOITwzph24z947KugpQMLMGrx
# Second build
- DotNetRunTime: net46
azure-event-hubs-dotnet/SkipCodeCoverage: true
skip_commits:
files:
- '**/*.md'
artifacts:
- path: .\build\artifacts\*
build_script:
- ps: >-
Build-Solution
before_test:
- ps: >-
Deploy-AzureResources
test_script:
- ps: >-
Run-UnitTests
on_finish:
- ps: >-
Delete-AzureResources
- ps: .\build\build.ps1
test: off
143 changes: 0 additions & 143 deletions build/AppveyorBuildFunctions.ps1

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 06381f8

Please sign in to comment.