From 36f23ec381b33fd7160abdb2678ef50880b1a0d2 Mon Sep 17 00:00:00 2001 From: greenamber676 Date: Fri, 10 Jan 2025 12:51:00 -0500 Subject: [PATCH] remove docker-compose down --- Jenkinsfile | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bfa3416..25c56d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,25 +19,16 @@ pipeline { stage('Build Node.js') { steps { script { - // Build Node.js application - echo 'step 1 - build reflex-react UI' + + echo 'Start run' } } } - stage('Build Django') { - steps { - script { - // Build Django application - echo 'step-1 build django-api' - } - } - } stage('Run Tests') { steps { script { - // Run tests using Docker Compose sh """ echo 'testing' pwd @@ -63,10 +54,10 @@ pipeline { post { always { - // Clean up Docker containers and images + sh """ - #!/bin/bash - podman-compose -f podman-compose.yml down + echo 'End of run.' + podman ps """ } }