Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continious integration using Azure Pipe Lines #46

Merged
merged 2 commits into from
Apr 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'