Skip to content

Commit a54d5cf

Browse files
authored
Merge pull request #871 from rabbitmq/lrb-fix-appveyor
Fix AppVeyor build
2 parents 7750851 + 2b205fa commit a54d5cf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "6.1.1.{build}"
1+
version: "7.0.0.{build}"
22

33
platform: Any CPU
44
configuration: Release

tools/appveyor/install.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,15 @@ $rabbitmqctl_path = "$path\rabbitmq_server-$rabbitmq_version\sbin\rabbitmqctl.ba
8787
[Environment]::SetEnvironmentVariable('RABBITMQ_RABBITMQCTL_PATH', $rabbitmqctl_path, 'Machine')
8888
$env:RABBITMQ_RABBITMQCTL_PATH = $rabbitmqctl_path
8989

90-
Write-Host '[INFO] Waiting for epmd to report that RabbitMQ has started'
91-
9290
$epmd_running = $false
9391
[int]$count = 1
9492

9593
$epmd = [System.IO.Path]::Combine($erlang_home, "erts-$erlang_erts_version", "bin", "epmd.exe")
9694

95+
Write-Host "[INFO] Waiting for epmd ($epmd) to report that RabbitMQ has started"
96+
9797
Do {
98+
& $epmd -names
9899
$epmd_running = & $epmd -names | Select-String -CaseSensitive -SimpleMatch -Quiet -Pattern 'name rabbit at port 25672'
99100
if ($epmd_running -eq $true) {
100101
Write-Host '[INFO] epmd reports that RabbitMQ is at port 25672'

0 commit comments

Comments
 (0)