-
Notifications
You must be signed in to change notification settings - Fork 0
/
whiskey.yml
89 lines (84 loc) · 2.4 KB
/
whiskey.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
86
87
88
89
Build:
- Version:
Path: Carbon.Core\Carbon.Core.psd1
Prerelease:
- main: ""
- "*": rc1
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ UpdateBuild, -Version, "$(WHISKEY_SEMVER2)+$(WHISKEY_BUILD_NUMBER)" ]
# Dot-sourcing files is expensive. Move all functions into your .psm1 file to
# improve import speed. Do this before testing to ensure your module still
# works.
- MergeFile:
OnlyBy: BuildServer
IfExists: Carbon.Core\Functions\*.ps1
Path:
- Carbon.Core\Functions\*.ps1
DestinationPath: Carbon.Core\Carbon.Core.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- CopyFile:
OnlyBy: BuildServer
Path:
- LICENSE
- NOTICE
- README.md
- CHANGELOG.md
DestinationDirectory: Carbon.Core
# Needed to install test users.
- PowerShell:
ScriptBlock: prism install | Format-Table -Auto
- PowerShell:
ExceptDuring: Clean
Path: init.ps1
- PowerShell:
OnlyDuring: Clean
Path: reset.ps1
- PublishPowerShellModule:
Path: Carbon.Core
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [
'PushArtifact',
'.output/Carbon.Core.$(WHISKEY_SEMVER2_NO_BUILD_METADATA).nupkg',
'-DeploymentName',
'PowerShellGallery'
]
- Delete:
Path: .output\*.zip
- Zip:
ArchivePath: .output\Carbon.Core-$(WHISKEY_SEMVER2).zip
Path:
- Carbon.Core
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ 'PushArtifact', '.output/Carbon.Core-$(WHISKEY_SEMVER2).zip', '-DeploymentName', 'GitHub' ]
- Pester:
Version: 5.*
Configuration:
TestResult:
Enabled: true
OutputPath: .\.output\pester5.xml
TestSuiteName: Carbon.Core
Run:
Path: Tests\*.Tests.ps1
ExcludePath:
- "*\\Carbon.Core.Tests.ps1"
- "*\\ConvertTo-CBase64.Tests.ps1"
- "*\\Get-CPowerShellPath.Tests.ps1"
- "*\\Test-COperatingSystem.Tests.ps1"
- "*\\Test-CPowerShell.Tests.ps1"
Output:
Verbosity: Detailed
- Pester4:
Script:
- Tests\Carbon.Core.Tests.ps1
- Tests\ConvertTo-CBase64.Tests.ps1
- Tests\Get-CPowerShellPath.Tests.ps1
- Tests\Resolve-CFullPath.Tests.ps1
- Tests\Test-COperatingSystem.Tests.ps1
- Tests\Test-CPowerShell.Tests.ps1