Skip to content

Commit

Permalink
Azure pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ironfede committed Dec 6, 2019
2 parents 0f0fa87 + a62d584 commit e44b427
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
5 changes: 3 additions & 2 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 Down
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 e44b427

Please sign in to comment.