-
Notifications
You must be signed in to change notification settings - Fork 0
/
whiskey.yml
74 lines (62 loc) · 2.04 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
Build:
- Version:
Path: Carbon.Registry\Carbon.Registry.psd1
Prerelease:
- main: ""
- "*": rc1
IncrementPrereleaseVersion: true
# Update the AppVeyor build/version number.
- Exec: appveyor UpdateBuild -Version "$(WHISKEY_SEMVER2)+$(WHISKEY_BUILD_NUMBER)"
.OnlyBy: BuildServer
- PowerShell:
ScriptBlock: |
prism install | Format-Table -Auto
prism install -Path .\Carbon.Registry | Format-Table -Auto
.ExceptDuring: Clean
- PowerShell: .\init.ps1
.ExceptDuring: Clean
- PowerShell: .\reset.ps1
.OnlyDuring: Clean
# 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.Registry\Functions\*.ps1
Path:
- Carbon.Registry\Functions\*.ps1
DestinationPath: Carbon.Registry\Carbon.Registry.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- CopyFile:
Path:
- CHANGELOG.md
- README.md
- LICENSE.txt
- NOTICE.txt
DestinationDirectory: Carbon.Registry
- Zip:
ArchivePath: .output\Carbon.Registry-$(WHISKEY_SEMVER2).zip
Path:
- Carbon.Registry
Exclude:
- "*.pdb"
- "*.orig"
- Exec: appveyor 'PushArtifact' '.output/Carbon.Registry-$(WHISKEY_SEMVER2).zip' -DeploymentName 'GitHub'
.OnlyBy: BuildServer
- Pester:
Configuration:
Run:
Path: Tests\*.Tests.ps1
Exit: true
Throw: true
TestResult:
Enabled: true
OutputPath: .output\pester.xml
TestSuiteName: Carbon.Registry
Output:
Verbosity: Detailed
- PublishPowerShellModule:
Path: Carbon.Registry
- Exec: appveyor 'PushArtifact' '.output/Carbon.Registry.$(WHISKEY_SEMVER2_NO_BUILD_METADATA).nupkg' -DeploymentName 'PowerShellGallery'
.OnlyBy: BuildServer