File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959 steps :
6060 - uses : actions/checkout@v4
6161
62+ - name : Check out pinned moq-dev relay workspace
63+ uses : actions/checkout@v4
64+ with :
65+ repository : moq-dev/moq
66+ ref : aae43f824b9b8d93b68dd6a765f8bec691f60c0b
67+ path : .moq-dev
68+
6269 - uses : erlef/setup-beam@v1
6370 with :
6471 elixir-version : ' 1.19.0'
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ defmodule MOQX.Test.Relay do
211211 defp wait_for_ports ( ports , timeout ) do
212212 probes =
213213 Enum . map_join ( ports , " && " , fn port ->
214- "lsof -nP -iTCP:#{ port } -sTCP:LISTEN - iUDP:#{ port } 2>/dev/null | grep moq-relay >/dev/null"
214+ "(( lsof -nP -iTCP:#{ port } -sTCP:LISTEN 2>/dev/null || true); (lsof -nP - iUDP:#{ port } 2>/dev/null || true)) | grep moq-relay >/dev/null"
215215 end )
216216
217217 case System . cmd ( "sh" , [ "-c" , probes ] ) do
You can’t perform that action at this time.
0 commit comments