-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
45 lines (36 loc) · 1.17 KB
/
Copy pathazure-pipelines.yml
File metadata and controls
45 lines (36 loc) · 1.17 KB
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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'vs2017-win2016'
steps:
# boost are already installed in vs2017-win2016
- script: |
ops\windows\install-build-env.bat
displayName: 'Setup build environment'
- script: |
ops\windows\build.bat
displayName: 'CMake'
# Build with MSBuild
- task: MSBuild@1
inputs:
solution: 'build/ipcaster.sln'
#msbuildLocationMethod: 'version' # Optional. Options: version, location
#msbuildVersion: 'latest' # Optional. Options: latest, 16.0, 15.0, 14.0, 12.0, 4.0
msbuildArchitecture: 'x86'
#msbuildLocation: # Optional
#platform: # Optional
configuration: release
#msbuildArguments: # Optional
#clean: false # Optional
#maximumCpuCount: false # Optional
#restoreNugetPackages: false # Optional
#logProjectEvents: false # Optional
#createLogFile: false # Optional
#logFileVerbosity: 'normal' # Optional. Options: quiet, minimal, normal, detailed, diagnostic
- script: |
ops\windows\test.bat
displayName: 'Test'