-
Notifications
You must be signed in to change notification settings - Fork 0
/
whiskey.yml
114 lines (100 loc) · 2.69 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
114
PublishOn:
- prerelease
- master
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: Rivet\Rivet.psd1
PowerShellModuleName: Rivet
Prerelease:
- main: ""
- master: ""
- "*": rc1
# Update the AppVeyor build/version number.
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ UpdateBuild, -Version, "$(WHISKEY_SEMVER2)+$(WHISKEY_BUILD_NUMBER)" ]
- DotNet:
Command: build
WorkingDirectory: Source
Argument:
- --configuration=$(WHISKEY_MSBUILD_CONFIGURATION)
- -p:Version=$(WHISKEY_SEMVER2)
- DotNet:
Command: test
WorkingDirectory: Source
Argument:
- --configuration=$(WHISKEY_MSBUILD_CONFIGURATION)
- -p:Version=$(WHISKEY_SEMVER2)
- --results-directory=$(WHISKEY_OUTPUT_DIRECTORY)
- --logger=trx
- Exec:
Path: robocopy.exe
SuccessExitCode: <8
Argument:
- Source\bin\$(WHISKEY_MSBUILD_CONFIGURATION)\netstandard2.0
- Rivet\bin
- Rivet.dll
- MergeFile:
OnlyBy: BuildServer
IfExists: Rivet\Functions\*.ps1
Path:
- Rivet\Functions\*.ps1
- Rivet\Functions\Columns\*.ps1
- Rivet\Functions\Operations\*.ps1
DestinationPath: Rivet\Rivet.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- MergeFile:
OnlyBy: BuildServer
IfExists: Test\RivetTest\Functions\*.ps1
Path:
- Test\RivetTest\Functions\*.ps1
- Test\RivetTest\RivetTest.Exports.ps1
DestinationPath: Test\RivetTest\RivetTest.psm1
DeleteSourceFiles: true
TextSeparator: "$(NewLine)$(NewLine)"
- CopyFile:
Path:
- CHANGELOG.md
- README.md
- LICENSE
- NOTICE
DestinationDirectory: Rivet
- Zip:
ArchivePath: .output\Rivet-$(WHISKEY_SEMVER2).zip
Path:
- Rivet
Exclude:
- "*.pdb"
- "*.orig"
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [ 'PushArtifact', '.output/Rivet-$(WHISKEY_SEMVER2).zip', '-DeploymentName', 'GitHub' ]
- Pester:
Configuration:
TestResult:
Enabled: true
OutputPath: .output\pester.xml
TestSuiteName: Rivet
Output:
Verbosity: Detailed
Run:
Path: Test\*.Tests.ps1
- PublishPowerShellModule:
Path: Rivet
- Exec:
OnlyBy: BuildServer
Path: appveyor
Argument: [
'PushArtifact',
'.output/Rivet.$(WHISKEY_SEMVER2_NO_BUILD_METADATA).nupkg',
'-DeploymentName',
'PowerShellGallery'
]