diff options
author | 杨宇千 <crupest@outlook.com> | 2019-02-04 15:27:53 +0000 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-02-04 15:27:53 +0000 |
commit | 42e6b2fd822b7dc1d8e2109f9e9aee3554311b85 (patch) | |
tree | db6ddb62e17acef97c0f3181f248219516aa8d83 | |
parent | 4fea4164fad943eebc1850042994fdbaad3682f9 (diff) | |
download | timeline-42e6b2fd822b7dc1d8e2109f9e9aee3554311b85.tar.gz timeline-42e6b2fd822b7dc1d8e2109f9e9aee3554311b85.tar.bz2 timeline-42e6b2fd822b7dc1d8e2109f9e9aee3554311b85.zip |
Set up CI with Azure Pipelines ***NO_CI***
-rw-r--r-- | azure-pipelines.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..1c521e4a --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# 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' + +steps: +- script: dotnet build --configuration $(buildConfiguration) + displayName: 'dotnet build $(buildConfiguration)' + +- task: DotNetCoreCLI@2 + inputs: + command: test |