-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhiskey.yml
113 lines (99 loc) · 3.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
Build:
- Version:
Path: Carbon.Cryptography\Carbon.Cryptography.psd1
Prerelease:
- main: ""
- "*": rc1
IncrementPrereleaseVersion: true
# Update the AppVeyor build/version number.
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ UpdateBuild, -Version, "$(WHISKEY_SEMVER2)+$(WHISKEY_BUILD_NUMBER)" ]
# Dot-sourcing files is expensive. Move all functions into .psm1 file to improve import speed. Do this before testing
# to ensure the module still works.
- MergeFile:
OnlyBy: BuildServer
# Builds run twice on some serves. Only run this step if the module hasn't been merged yet.
IfExists: Carbon.Cryptography\Functions\*.ps1
Path:
- Carbon.Cryptography\Functions\*.ps1
DestinationPath: Carbon.Cryptography\Carbon.Cryptography.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- PowerShell:
ExceptDuring: Clean
Path: init.ps1
- PowerShell:
OnlyDuring: Clean
Path: reset.ps1
- Delete:
OnlyBy: BuildServer
Path: Carbon.Cryptography\prism.*
- CopyFile:
Path:
- CHANGELOG.md
- README.md
- LICENSE
- NOTICE
DestinationDirectory: Carbon.Cryptography
- Zip:
ArchivePath: .output\Carbon.Cryptography-$(WHISKEY_SEMVER2).zip
Path:
- Carbon.Cryptography
Exclude:
- "*.pdb"
- "*.orig"
- "prism.*"
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ 'PushArtifact', '.output/Carbon.Cryptography-$(WHISKEY_SEMVER2).zip', '-DeploymentName', 'GitHub' ]
- PublishPowerShellModule:
Path: Carbon.Cryptography
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [
'PushArtifact',
'.output/Carbon.Cryptography.$(WHISKEY_SEMVER2_NO_BUILD_METADATA).nupkg',
'-DeploymentName',
'PowerShellGallery'
]
- Pester:
Configuration:
Run:
Path: Tests\*.Tests.ps1
ExcludePath:
- "*\\Convert-CSecureStringToString.Tests.ps1"
- "*\\Find-CTlsCertificate.Tests.ps1"
- "*\\Get-CCertificate.Tests.ps1"
- "*\\New-CRsaKeyPair.Tests.ps1"
- "*\\Protect-CString.Tests.ps1"
- "*\\Uninstall-CCertificate.Tests.ps1"
- "*\\Unprotect-CString.Tests.ps1"
Throw: true
TestResult:
Enabled: true
OutputPath: .output\pester5.xml
Output:
Verbosity: Detailed
- Pester:
# Because the DSC resource in the test is resolved during parsing not execution.
OnlyOnPlatform: Windows
Configuration:
Run:
Path: Tests\New-CRsaKeyPair.Tests.ps1
Throw: true
TestResult:
Enabled: true
OutputPath: .output\pester5-new-crsakeypair.xml
Output:
Verbosity: Detailed
- Pester4:
Script:
- Tests\Convert-CSecureStringToString.Tests.ps1
- Tests\Get-CCertificate.Tests.ps1
- Tests\Protect-CString.Tests.ps1
- Tests\Uninstall-CCertificate.Tests.ps1
- Tests\Unprotect-CString.Tests.ps1