From 861d643dd73ed15426a2bdc9d28d569502096b7b Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 15:43:46 -0700 Subject: [PATCH 1/8] Fix appveyor.yml --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index bae32cd..fe48cdb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,11 +9,11 @@ matrix: image: Visual Studio 2017 environment: azure-event-hubs-dotnet/ClientSecret: - secure: /8H7C81iNS+gVi7LhJCEOPUlNaa30y4KcY4nw/g2C4HGxOv6SrcroyDvMnqD+5GN + secure: +30vtVYAECW7t7ieidatPhCEhvVjjbDUc2UA1SYtDwHa8NxR354pfn9ezxaMqIAR azure-event-hubs-dotnet/TenantId: - secure: xohonz/X8PPLOVIdT3ch2C5XeSa30RwR6NuXFh4e85svXT1mJNGGO1HQEGxCk3wp + secure: pDX+hB+9zbM0v7OQ44t1Ols0mfRl0BQlJY+ycuteSdZaK1NGJuMHFwS9ULeSBYS/ azure-event-hubs-dotnet/AppId: - secure: c+H140oRJfHtmFHZxSRLWocv5AU0q33X7kgMcTcXxhJvtVhk2WAk1dRQkSN+SyoA + secure: NYwBqWBHvwwNfcKZjjLjCDSxPEVq1AH0DvJXQjVjPA/xpDT/e9SxCj4YpIMWwd+t matrix: # First build - DotNetRunTime: netcoreapp1.0 From a0d5f15f6b597b98fab8e368e15f5cfe68ec58a9 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 15:51:29 -0700 Subject: [PATCH 2/8] Add build log to build.ps1 --- build/build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/build/build.ps1 b/build/build.ps1 index d23966c..2efe1d1 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -214,6 +214,7 @@ function Delete-AzureResources Build-Solution if (-Not $canDeploy -and -Not [bool][Environment]::GetEnvironmentVariable($connectionStringVariableName)) { + Write-Host "Skipping deploy and unit tests" return } try { From a017448a496dccac64566358a72e8fecc8d44e89 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 15:56:30 -0700 Subject: [PATCH 3/8] . --- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.ps1 b/build/build.ps1 index 2efe1d1..7f7ce3a 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -214,7 +214,7 @@ function Delete-AzureResources Build-Solution if (-Not $canDeploy -and -Not [bool][Environment]::GetEnvironmentVariable($connectionStringVariableName)) { - Write-Host "Skipping deploy and unit tests" + Write-Host "Skipping deploy and unit tests - " + $tenantId return } try { From 266d7c2ca2fa6339bdda59b42531c4aececd71e7 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 15:59:42 -0700 Subject: [PATCH 4/8] . --- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.ps1 b/build/build.ps1 index 7f7ce3a..c096449 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -214,7 +214,7 @@ function Delete-AzureResources Build-Solution if (-Not $canDeploy -and -Not [bool][Environment]::GetEnvironmentVariable($connectionStringVariableName)) { - Write-Host "Skipping deploy and unit tests - " + $tenantId + Write-Host 'Skipping deploy and unit tests - ' + $tenantId return } try { From 94d053b93bcbe935edaa911b9b362be4b5711da9 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 16:02:37 -0700 Subject: [PATCH 5/8] . --- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.ps1 b/build/build.ps1 index c096449..508c9b5 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -214,7 +214,7 @@ function Delete-AzureResources Build-Solution if (-Not $canDeploy -and -Not [bool][Environment]::GetEnvironmentVariable($connectionStringVariableName)) { - Write-Host 'Skipping deploy and unit tests - ' + $tenantId + Write-Host 'Skipping deploy and unit tests - canDeploy:' + $canDeploy return } try { From d4b2b3e3ba58e187858e777eed7b33e8bf1d2fb0 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 16:17:17 -0700 Subject: [PATCH 6/8] . --- build/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.ps1 b/build/build.ps1 index 508c9b5..3d313e6 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -17,7 +17,7 @@ $testNamespace = 'Microsoft.Azure.EventHubs.Tests' # Environment variables $connectionStringVariableName = 'azure-event-hubs-dotnet/connectionstring' $storageConnectionStringVariableName = 'azure-event-hubs-dotnet/storageconnectionstring' -$codeCovSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/CodeCovSecret') +<#$codeCovSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/CodeCovSecret')#> $clientSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/ClientSecret') $tenantId = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/TenantId') $appId = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/AppId') @@ -214,7 +214,7 @@ function Delete-AzureResources Build-Solution if (-Not $canDeploy -and -Not [bool][Environment]::GetEnvironmentVariable($connectionStringVariableName)) { - Write-Host 'Skipping deploy and unit tests - canDeploy:' + $canDeploy + Write-Host 'Skipping deploy and unit tests - canDeploy:' $canDeploy return } try { From 5fcb0aa8acf7e78685422d99f944fc14c8c758eb Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 16:25:01 -0700 Subject: [PATCH 7/8] . --- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.ps1 b/build/build.ps1 index 3d313e6..b1ece28 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -17,7 +17,7 @@ $testNamespace = 'Microsoft.Azure.EventHubs.Tests' # Environment variables $connectionStringVariableName = 'azure-event-hubs-dotnet/connectionstring' $storageConnectionStringVariableName = 'azure-event-hubs-dotnet/storageconnectionstring' -<#$codeCovSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/CodeCovSecret')#> +$codeCovSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/CodeCovSecret') $clientSecret = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/ClientSecret') $tenantId = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/TenantId') $appId = [Environment]::GetEnvironmentVariable('azure-event-hubs-dotnet/AppId') From aa14703155d97af10772b3e48715d62509295fb5 Mon Sep 17 00:00:00 2001 From: Serkant Karaca Date: Wed, 9 Aug 2017 16:43:13 -0700 Subject: [PATCH 8/8] Appveyor account changes in readme.md --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 34bf7db..114c80a 100644 --- a/readme.md +++ b/readme.md @@ -6,8 +6,8 @@ |Build/Package|Status| |------|-------------| -|master|[![Build status](https://ci.appveyor.com/api/projects/status/p71xb6o7233m7gi3/branch/master?svg=true)](https://ci.appveyor.com/project/jtaubensee/azure-event-hubs-dotnet/branch/master) [![codecov](https://codecov.io/gh/Azure/azure-event-hubs-dotnet/branch/master/graph/badge.svg)](https://codecov.io/gh/Azure/azure-event-hubs-dotnet)| -|dev|[![Build status](https://ci.appveyor.com/api/projects/status/p71xb6o7233m7gi3/branch/master?svg=true)](https://ci.appveyor.com/project/jtaubensee/azure-event-hubs-dotnet/branch/dev) [![codecov](https://codecov.io/gh/Azure/azure-event-hubs-dotnet/branch/dev/graph/badge.svg)](https://codecov.io/gh/Azure/azure-event-hubs-dotnet)| +|master|[![Build status](https://ci.appveyor.com/api/projects/status/p71xb6o7233m7gi3/branch/master?svg=true)](https://ci.appveyor.com/project/serkantkaraca/azure-event-hubs-dotnet/branch/master) [![codecov](https://codecov.io/gh/Azure/azure-event-hubs-dotnet/branch/master/graph/badge.svg)](https://codecov.io/gh/Azure/azure-event-hubs-dotnet)| +|dev|[![Build status](https://ci.appveyor.com/api/projects/status/p71xb6o7233m7gi3/branch/master?svg=true)](https://ci.appveyor.com/project/serkantkaraca/azure-event-hubs-dotnet/branch/dev) [![codecov](https://codecov.io/gh/Azure/azure-event-hubs-dotnet/branch/dev/graph/badge.svg)](https://codecov.io/gh/Azure/azure-event-hubs-dotnet)| |Microsoft.Azure.EventHubs|[![NuGet Version and Downloads count](https://buildstats.info/nuget/Microsoft.Azure.EventHubs?includePreReleases=true)](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/)| |Microsoft.Azure.EventHubs.Processor|[![NuGet Version and Downloads count](https://buildstats.info/nuget/Microsoft.Azure.EventHubs.Processor?includePreReleases=true)](https://www.nuget.org/packages/Microsoft.Azure.EventHubs.Processor/)|