-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.build.ps1
More file actions
80 lines (67 loc) · 1.61 KB
/
.build.ps1
File metadata and controls
80 lines (67 loc) · 1.61 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
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
<#
.DESCRIPTION
TinyIpc build script, run using cmdlet Invoke-Build from module InvokeBuild
#>
param (
[string]
$Version
)
$artifactFolder = "artifacts"
$testResultsFolder = Join-Path $artifactFolder "testresults"
task AssertVersion {
if (-not $Version) {
throw "Specify version with -Version parameter"
}
}
task DotnetRestore {
exec {
dotnet restore
}
}
task DotnetFormat DotnetRestore, {
exec {
dotnet format --no-restore
}
}
task DotnetFormatCheck DotnetRestore, {
exec {
dotnet format --no-restore --verify-no-changes
}
}
task DotnetBuild DotnetRestore, {
exec {
dotnet build --no-restore
}
}
task DotnetTest DotnetBuild, {
exec {
dotnet test `
--disable-logo `
--no-build `
--max-parallel-test-modules 1 `
--results-directory $testResultsFolder
}
}
task AotTest {
$binary = Join-Path "artifacts" "publish" "TinyIpc.Tests" "release_net10.0-windows_win-x64" "TinyIpc.Tests.exe"
exec {
dotnet publish (Join-Path "test" "TinyIpc.Tests") `
--framework "net10.0-windows" `
-p:"Aot=true"
}
exec {
& $binary --disable-logo --results-directory $testResultsFolder
}
}
task DotnetPack AssertVersion, {
exec {
dotnet pack (Join-Path "src" "TinyIpc") `
--configuration Release `
--output . `
/p:ContinuousIntegrationBuild="true" `
/p:EnableSourcelink="true" `
/p:Version=$Version
}
}
task Package DotnetPack
task . DotnetFormatCheck, DotnetBuild, DotnetTest