ci dont fail when checking if docker is running

pull/8833/head
Medya Gh 2020-07-24 11:47:57 -07:00
parent 6bdd4fbb91
commit 0701f5ed35
2 changed files with 4 additions and 0 deletions

View File

@ -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) {

View File

@ -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) {