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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
param(
[string] $BuildDir = $null,
[string] $ProjectDir = $null,
[string] $Generator = $null,
[string] $Platform = $null,
[string] $Configuration = $null
)
$ErrorActionPreference = "Stop";
Set-PSDebug -Strict
function Invoke-Exe {
param(
[ScriptBlock] $Cmd,
[int[]] $AllowedExitCodes = @(0)
)
$backupErrorActionPreference = $script:ErrorActionPreference
$script:ErrorActionPreference = 'Continue'
try {
& $Cmd
if ($AllowedExitCodes -notcontains $LastExitCode) {
throw "External command failed with exit code ${LastExitCode}: $Cmd"
}
} finally {
$script:ErrorActionPreference = $backupErrorActionPreference
}
}
function Test-AppVeyor {
return Test-Path env:APPVEYOR
}
function Set-AppVeyorDefaults {
$script:ProjectDir = $env:APPVEYOR_BUILD_FOLDER
$script:BuildDir = 'C:\Projects\build'
$script:Generator = switch ($env:APPVEYOR_BUILD_WORKER_IMAGE) {
'Visual Studio 2013' { 'Visual Studio 12 2013' }
'Visual Studio 2015' { 'Visual Studio 14 2015' }
'Visual Studio 2017' { 'Visual Studio 15 2017' }
default { throw "Unsupported AppVeyor image: $env:APPVEYOR_BUILD_WORKER_IMAGE" }
}
$script:Platform = $env:PLATFORM
$script:Configuration = $env:CONFIGURATION
}
function Build-ProjectUserMode {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $BuildDir,
[Parameter(Mandatory=$true)]
[string] $Generator,
[Parameter(Mandatory=$true)]
[string] $Platform,
[Parameter(Mandatory=$true)]
[string] $Configuration
)
mkdir $BuildDir
cd $BuildDir
Invoke-Exe { cmake.exe -Wno-dev -G $Generator -A $Platform "$ProjectDir\um" }
Invoke-Exe { cmake.exe --build . --config $Configuration -- /m }
}
function Get-DriverConfiguration {
param(
[Parameter(Mandatory=$true)]
[string] $Configuration
)
return "Win7 $Configuration"
}
function Get-DriverBuildDir {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $DriverSpec
)
return "$ProjectDir\km\build\wdk8.1update\$DriverSpec"
}
function Get-DriverSolutionPath {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $DriverSpec
)
$build_dir = Get-DriverBuildDir -ProjectDir $ProjectDir -DriverSpec $DriverSpec
$driver_name = Split-Path -Path $build_dir -Leaf -Resolve
return "$build_dir\$driver_name.vs12.sln"
}
function Build-Driver {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $DriverSpec,
[Parameter(Mandatory=$true)]
[string] $Platform,
[Parameter(Mandatory=$true)]
[string] $Configuration
)
$build_dir = Get-DriverBuildDir -ProjectDir $ProjectDir -DriverSpec $DriverSpec
$solution_path = Get-DriverSolutionPath -ProjectDir $ProjectDir -DriverSpec $DriverSpec
$Configuration = Get-DriverConfiguration -Configuration $Configuration
$msbuild_params = "/p:Configuration=$Configuration;Platform=$Platform"
cd $build_dir
Invoke-Exe { msbuild.exe $msbuild_params $solution_path }
}
function Build-ProjectKernelMode {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $Platform,
[Parameter(Mandatory=$true)]
[string] $Configuration
)
Build-Driver -ProjectDir $ProjectDir -Platform $Platform -Configuration $Configuration -DriverSpec 'minimal'
Build-Driver -ProjectDir $ProjectDir -Platform $Platform -Configuration $Configuration -DriverSpec 'simple'
Build-Driver -ProjectDir $ProjectDir -Platform $Platform -Configuration $Configuration -DriverSpec 'special\nt_namespace'
}
function Build-Project {
param(
[Parameter(Mandatory=$true)]
[string] $ProjectDir,
[Parameter(Mandatory=$true)]
[string] $BuildDir,
[Parameter(Mandatory=$true)]
[string] $Generator,
[Parameter(Mandatory=$true)]
[string] $Platform,
[Parameter(Mandatory=$true)]
[string] $Configuration
)
Build-ProjectUserMode `
-ProjectDir $ProjectDir `
-BuildDir $BuildDir `
-Generator $Generator `
-Platform $Platform `
-Configuration $Configuration
Build-ProjectKernelMode `
-ProjectDir $ProjectDir `
-Platform $Platform `
-Configuration $Configuration
}
function Build-ProjectAppVeyor {
if (Test-AppVeyor) {
Set-AppVeyorDefaults
$appveyor_cwd = pwd
}
try {
Build-Project `
-ProjectDir $script:ProjectDir `
-BuildDir $script:BuildDir `
-Generator $script:Generator `
-Platform $script:Platform `
-Configuration $script:Configuration
} finally {
if (Test-AppVeyor) {
cd $appveyor_cwd
}
}
}
Build-ProjectAppVeyor
|