diff options
-rw-r--r-- | CI/build-pipeline.yml | 24 | ||||
-rw-r--r-- | CI/release-pipeline.yml (renamed from azure-pipelines.yml) | 4 |
2 files changed, 27 insertions, 1 deletions
diff --git a/CI/build-pipeline.yml b/CI/build-pipeline.yml new file mode 100644 index 00000000..33a75a95 --- /dev/null +++ b/CI/build-pipeline.yml @@ -0,0 +1,24 @@ +variables:
+ buildConfiguration: 'Debug'
+ ASPNETCORE_ENVIRONMENT: 'Development'
+stages:
+- stage: Build
+ jobs:
+ - job: Build
+ pool:
+ vmImage: 'Ubuntu-16.04'
+ steps:
+ - script: |
+ dotnet restore Timeline/Timeline.csproj --configfile nuget.config
+ dotnet restore Timeline.Tests/Timeline.Tests.csproj --configfile nuget.config
+ displayName: Dotnet Restore
+
+ - script: dotnet test Timeline.Tests/Timeline.Tests.csproj --configuration $(buildConfiguration) --no-restore --logger trx
+ displayName: Dotnet Test
+
+ - task: PublishTestResults@2
+ condition: succeededOrFailed()
+ inputs:
+ testRunner: VSTest
+ testResultsFiles: '**/*.trx'
+
diff --git a/azure-pipelines.yml b/CI/release-pipeline.yml index b27b3112..f2b94224 100644 --- a/azure-pipelines.yml +++ b/CI/release-pipeline.yml @@ -1,9 +1,11 @@ trigger:
- master
+pr: none
+
variables:
buildConfiguration: 'Release'
- ASPNETCORE_ENVIRONMENT: 'Development'
+ ASPNETCORE_ENVIRONMENT: 'Production'
stages:
- stage: Build
jobs:
|