forked from OctopusDeploy/OctopusDSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-azure.ps1
executable file
·64 lines (51 loc) · 1.73 KB
/
build-azure.ps1
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
#!/usr/local/bin/pwsh
param(
[switch]$offline,
[switch]$SkipPester,
[switch]$ServerOnly,
[switch]$TentacleOnly,
[string]$OctopusVersion,
[switch]$retainondestroy,
[switch]$debug
)
. Tests/powershell-helpers.ps1
Test-EnvVar AZURE_VM_PASSWORD
Test-EnvVar AZURE_SUBSCRIPTION_ID
Test-EnvVar AZURE_TENANT_ID
Test-EnvVar AZURE_CLIENT_ID
Test-EnvVar AZURE_CLIENT_SECRET
Set-OctopusDscEnvVars @PSBoundParameters
if (-not (Test-AppExists "vagrant")) {
Write-Output "Please install vagrant from vagrantup.com."
exit 1
}
Write-Output "Vagrant installed - good."
if (-not (Test-AppExists "azure")) {
Write-Output "Azure CLI not found. Please install from https://docs.microsoft.com/en-us/azure/xplat-cli-install."
exit 1
}
Write-Output "Azure CLI installed - good."
Test-CustomVersionOfVagrantDscPluginIsInstalled
Test-PluginInstalled "vagrant-azure" "2.0.0.pre7"
Test-PluginInstalled "vagrant-winrm-syncedfolders"
if(-not $SkipPester) {
Write-Output "Importing Pester module"
Test-PowershellModuleInstalled "Pester"
Test-PowershellModuleInstalled "PSScriptAnalyzer"
Import-Module Pester -verbose -force
Write-Output "Running Pester Tests"
$result = Invoke-Pester -OutputFile PesterTestResults.xml -OutputFormat NUnitXml -PassThru
if ($result.FailedCount -gt 0) {
exit 1
}
}
Write-Output "Running 'vagrant up --provider azure'"
Invoke-VagrantWithRetries -provider azure
Write-Output "'vagrant up' exited with exit code $LASTEXITCODE"
if ($LASTEXITCODE -ne 0)
{
Write-Output "Vagrant up failed with exit code $LASTEXITCODE"
Write-Output "##teamcity[buildStatus text='{build.status.text}. Vagrant failed.']"
exit $LASTEXITCODE
}
Write-Output "Don't forget to run 'cleanup-azure.ps1' when you have finished"