ci dont fail when checking if docker is running
parent
6bdd4fbb91
commit
0701f5ed35
|
@ -312,6 +312,7 @@ jobs:
|
|||
shell: powershell
|
||||
continue-on-error: true
|
||||
run: |
|
||||
$ErrorActionPreference = "SilentlyContinue"
|
||||
docker ps 2>&1 | Out-Null
|
||||
$docker_running = $?
|
||||
if (!$docker_running) {
|
||||
|
@ -446,6 +447,7 @@ jobs:
|
|||
shell: powershell
|
||||
continue-on-error: true
|
||||
run: |
|
||||
$ErrorActionPreference = "SilentlyContinue"
|
||||
docker ps 2>&1 | Out-Null
|
||||
$docker_running = $?
|
||||
if (!$docker_running) {
|
||||
|
|
|
@ -310,6 +310,7 @@ jobs:
|
|||
shell: powershell
|
||||
continue-on-error: true
|
||||
run: |
|
||||
$ErrorActionPreference = "SilentlyContinue"
|
||||
docker ps 2>&1 | Out-Null
|
||||
$docker_running = $?
|
||||
if (!$docker_running) {
|
||||
|
@ -444,6 +445,7 @@ jobs:
|
|||
shell: powershell
|
||||
continue-on-error: true
|
||||
run: |
|
||||
$ErrorActionPreference = "SilentlyContinue"
|
||||
docker ps 2>&1 | Out-Null
|
||||
$docker_running = $?
|
||||
if (!$docker_running) {
|
||||
|
|
Loading…
Reference in New Issue