-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
85 lines (72 loc) · 3.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
trigger:
batch: true
branches:
include:
- main
- release/*
resources:
repositories:
- repository: niveristand-custom-device-build-tools
type: github
ref: main
endpoint: nivs-custom-devices
name: ni/niveristand-custom-device-build-tools
stages:
- template: azure-templates/stages.yml@niveristand-custom-device-build-tools
parameters:
lvVersionsToBuild:
- version: '2021'
bitness: '64bit'
- version: '2023'
bitness: '64bit'
- version: '2024'
bitness: '64bit'
buildSteps:
# Windows build steps should all follow this build step, since it builds an important dependency
- projectLocation: 'Source\Core\Data Sharing Framework Core Build - Windows.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'My Computer'
buildSpec: 'Data Sharing Framework Core'
- projectLocation: 'Source\Custom Device\Data Sharing Framework Custom Device.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'My Computer'
buildSpec: 'Configuration Release'
- projectLocation: 'Source\Custom Device\Data Sharing Framework Custom Device.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'My Computer'
buildSpec: 'Scripting API'
- projectLocation: 'Source\Scripting Examples\Data Sharing Framework Scripting.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'My Computer'
buildSpec: 'Scripting Examples'
- projectLocation: 'Source\Custom Device\Data Sharing Framework Custom Device.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'My Computer'
buildSpec: 'Engine Release'
# Linux x64 build steps should all follow this build step, since it builds an important dependency
- projectLocation: 'Source\Core\Data Sharing Framework Core Build - Linux RT.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'Linux RT x64'
buildSpec: 'Data Sharing Framework Core'
- projectLocation: 'Source\Custom Device\Data Sharing Framework Custom Device Linux RT x64.lvproj'
buildOperation: 'ExecuteBuildSpec'
target: 'Linux RT x64'
buildSpec: 'Engine Release'
releaseVersion: '24.0.0'
buildOutputLocation: 'Source\Built'
archiveLocation: '\\nirvana\Measurements\VeriStandAddons\data_sharing_framework_CD'
packages:
- controlFileName: 'control_dsf_cd'
payloadMaps:
- installLocation: 'documents\National Instruments\NI VeriStand $(lvVersion)\Custom Devices\Data Sharing Framework'
payloadLocation: 'Custom Device'
- installLocation: 'ni-paths-NISHAREDDIR$(nipkgx64suffix)\Errors\English'
payloadLocation: 'Errors'
- controlFileName: 'control_dsf_scripting'
payloadMaps:
- installLocation: 'ni-paths-LV$(lvVersion)DIR$(nipkgx64suffix)\vi.lib\addons\VeriStand Custom Device Scripting APIs\Data Sharing Framework'
payloadLocation: 'Scripting API'
- controlFileName: 'control_dsf_examples'
payloadMaps:
- installLocation: 'ni-paths-LV$(lvVersion)DIR$(nipkgx64suffix)\examples\NI VeriStand Custom Devices\Data Sharing Framework'
payloadLocation: 'Scripting Examples'