-
Notifications
You must be signed in to change notification settings - Fork 0
/
whiskey.yml
101 lines (87 loc) · 2.3 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
PublishOn:
- master
- prerelease
Build:
- PowerShell:
IfExists: env:MSSQL_SERVICE_NAME
ScriptBlock: |
Get-ChildItem -Path 'env:MSSQL_*' | Format-Table -Auto
Start-Service -Name $env:MSSQL_SERVICE_NAME -PassThru | Format-Table -Auto
- Version:
Path: Yodel\Yodel.psd1
Prerelease:
- main: ""
- master: ""
- "*": rc1
IncrementPrereleaseVersion: true
# Update the AppVeyor build/version number.
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ UpdateBuild, -Version, "$(WHISKEY_SEMVER2)+$(WHISKEY_BUILD_NUMBER)" ]
- CopyFile:
Path:
- CHANGELOG.md
- README.md
- LICENSE.txt
- NOTICE.txt
DestinationDirectory: Yodel
# 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
Path:
- Yodel\Functions\*.ps1
- Yodel\Functions\MsSql\*.ps1
DestinationPath: Yodel\Yodel.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- File:
IfExists: env:APPVEYOR
Path: Tests\Server.txt
Content: $(MSSQL_INSTANCE_NAME)
- File:
UnlessExists: env:APPVEYOR
Path: Tests\Server.txt
Content: '.'
- Zip:
ArchivePath: .output\Yodel-$(WHISKEY_SEMVER2).zip
Path:
- Yodel
Exclude:
- "*.orig"
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ 'PushArtifact', '.output/Yodel-$(WHISKEY_SEMVER2).zip', '-DeploymentName', 'GitHub' ]
- Pester:
Configuration:
TestResult:
Enabled: true
OutputPath: .output\pester.xml
TestSuiteName: Yodel
Output:
Verbosity: Detailed
Run:
Path: Tests\*.Tests.ps1
ExcludePath:
- "*\\Connect-YDatabase.Tests.ps1"
- "*\\Import-Yodel.Tests.ps1"
- "*\\Invoke-YDbCommand.Tests.ps1"
- Pester4:
Script:
- Tests\Connect-YDatabase.Tests.ps1
- Tests\Import-Yodel.Tests.ps1
- Tests\Invoke-YDbCommand.Tests.ps1
- PublishPowerShellModule:
Path: Yodel
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [
'PushArtifact',
'.output/Yodel.$(WHISKEY_SEMVER2_NO_BUILD_METADATA).nupkg',
'-DeploymentName',
'PowerShellGallery'
]