Skip to content

Commit

Permalink
Merge pull request #46 from michaelp/master
Browse files Browse the repository at this point in the history
Continious integration using Azure Pipe Lines
  • Loading branch information
ironfede authored Apr 14, 2019
2 parents 6fc62aa + a44a2ce commit a62d584
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
################################################################################
obj/
/.vs/OpenMcdf/v14
# all bin directories anywhere in the repo
bin/
/TestResults
TestResults/
/sources/Test/OpenMcdf.Test/bin/Debug
/sources/Test/OpenMcdf.PerfTest/obj/Debug
/sources/Test/OpenMcdf.PerfTest/bin/Debug
Expand All @@ -27,7 +28,7 @@ bin/
/Memory Test/bin/Debug
/bin/Release/StructuredStorageXplorer
/bin/Release/OpenMcdf.Extensions
/bin/Release/
/bin/Release
/sources/Html Help/Help
/.vs
# User-specific files
Expand All @@ -38,4 +39,4 @@ bin/
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
*.DotSettings.user
31 changes: 31 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core

trigger:
- master

pool:
vmImage: 'Ubuntu-16.04'

variables:
buildConfiguration: 'Release'
libFramework: 'netstandard2.0'
appFramework: 'netcoreapp2.0'
# pay attention to slashes
testsProject: 'sources/Test/OpenMcdf.Test/OpenMcdf.Test.csproj'
buildProject: 'sources/OpenMcdf/OpenMcdf.csproj'
# without filter it will timoeout in azure AFTER 60+ min
testFilter: 'Name!=Test_FIX_BUG_GH_14&Name!=Test_FIX_BUG_GH_15'

steps:
- script: dotnet build --configuration $(buildConfiguration) -f $(libFramework) $(buildProject)
displayName: 'dotnet build $(buildConfiguration)'

- script: dotnet test -f $(appFramework) $(testsProject) --filter="$(testFilter)" --logger trx
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: VSTest
testResultsFiles: '**/*.trx'

0 comments on commit a62d584

Please sign in to comment.