forked from DFIR-ORC/dfir-orc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
48 lines (47 loc) · 1.41 KB
/
azure-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
44
45
46
47
48
jobs:
- job: vs2017_x64
timeoutInMinutes: 600
pool:
vmImage: 'vs2017-win2016'
steps:
- script: mkdir build-x64
displayName: Make Build Directory
- task: CMake@1
displayName: CMake configuration
inputs:
workingDirectory: 'build-x64'
cmakeArgs: '-G "Visual Studio 15 2017 Win64" -T v141_xp -DORC_BUILD_VCPKG=ON ..'
- task: CMake@1
displayName: CMake build
inputs:
workingDirectory: 'build-x64'
cmakeArgs: '--build . --config MinSizeRel -- -maxcpucount'
- task: VSTest@2
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: '**/OrcLibTest.dll'
platform: "x64"
configuration: "MinSizeRel"
- job: vs2017_x86
timeoutInMinutes: 600
pool:
vmImage: 'vs2017-win2016'
steps:
- script: mkdir build-x86
displayName: Make Build Directory
- task: CMake@1
displayName: CMake configuration
inputs:
workingDirectory: 'build-x86'
cmakeArgs: '-G "Visual Studio 15 2017" -T v141_xp -DORC_BUILD_VCPKG=ON ..'
- task: CMake@1
displayName: CMake build
inputs:
workingDirectory: 'build-x86'
cmakeArgs: '--build . --config MinSizeRel -- -maxcpucount'
- task: VSTest@2
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: '**/OrcLibTest.dll'
platform: "x86"
configuration: "MinSizeRel"