From eaa54181f6a9594c2b25bc6506a8a5ad979f21be Mon Sep 17 00:00:00 2001 From: robbond Date: Fri, 6 Mar 2026 14:00:28 +0000 Subject: [PATCH] commented out prefilight docker check --- Jenkinsfile | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 23f808c..a034cbf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,24 +10,24 @@ pipeline { } stages { - stage('Preflight') { - steps { - sh ''' - set -euo pipefail + // stage('Preflight') { + // steps { + // sh ''' + // set -euo pipefail - if ! command -v docker >/dev/null 2>&1; then - echo "Docker CLI is not available on this Jenkins agent." - echo "Run this pipeline on a Docker-capable node or install Docker on the current agent." - exit 1 - fi + // if ! command -v docker >/dev/null 2>&1; then + // echo "Docker CLI is not available on this Jenkins agent." + // echo "Run this pipeline on a Docker-capable node or install Docker on the current agent." + // exit 1 + // fi - if ! docker version >/dev/null 2>&1; then - echo "Docker is installed but not usable by Jenkins (daemon/socket/permissions issue)." - exit 1 - fi - ''' - } - } + // if ! docker version >/dev/null 2>&1; then + // echo "Docker is installed but not usable by Jenkins (daemon/socket/permissions issue)." + // exit 1 + // fi + // ''' + // } + // } stage('Checkout') { steps {