-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpr-pipelines.yml
43 lines (38 loc) · 1.08 KB
/
pr-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
trigger: none
pr:
branches:
include:
- master
pool:
vmImage: 'windows-latest'
variables:
- group: 'Package Versioning'
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
value: 'Release'
jobs:
- job: BuildPack
displayName: Build & Pack
variables:
- name: packageVersion
value: "$(major).$(minor).$(patch)"
steps:
- task: MSBuild@1
displayName: Build & Pack Project
inputs:
solution: '**/src/ReCaptcha/ReCaptcha.csproj'
configuration: $(buildConfiguration)
platform: $(buildPlatform)
msbuildArguments: '/restore /t:Build /p:ContinuousIntegrationBuild=true /p:Deterministic=false /p:PackageVersion=$(packageVersion)'
- job: Test
displayName: Run Unit Tests
steps:
- task: DotNetCoreCLI@2
displayName: Run Tests
inputs:
command: 'test'
publishTestResults: true
projects: '**/tests/ReCaptcha.Tests/ReCaptcha.Tests.csproj'
testRunTitle: 'Project Unit Tests'
workingDirectory: '$(System.DefaultWorkingDirectory)'