From 3ad58311e2fe5c5846bc85900fc74af1cbb97dc7 Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 31 Jan 2025 13:31:56 +0100 Subject: [PATCH] test: refs #6695 rollback build backend and frontend in parallel --- Jenkinsfile | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a23fad69b..570c6e826 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -105,27 +105,27 @@ pipeline { sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git' } } - stage('Up') { - parallel { - stage('DB & Backend') { - steps { - sh 'cd salix && pnpm i --prefer-offline @verdnatura/myt && npx myt run -t -d' - sh 'docker build -f ./salix/back/Dockerfile -t back ./salix' - sh 'docker run -d --name salix_e2e --net=host -v $(pwd)/test/cypress/storage:/salix/storage back' - } - } - stage('Frontend') { - steps { - sh 'quasar build' - sh 'docker-compose -f docker-compose.e2e.yml up -d --build front' - } - } + stage('Up Database') { + steps { + sh 'cd salix && pnpm i --prefer-offline @verdnatura/myt && npx myt run -t -d' } } - stage('Run') { + stage('Up Backend') { steps { - sh 'docker-compose -f docker-compose.e2e.yml build e2e' - sh 'docker-compose -f docker-compose.e2e.yml up e2e' + sh 'docker build -f ./salix/back/Dockerfile -t back ./salix' + sh 'docker run -d --name salix_e2e --net=host -v $(pwd)/test/cypress/storage:/salix/storage back' + } + } + stage('Up Frontend') { + steps { + sh 'quasar build' + sh 'docker-compose -f docker-compose.e2e.yml up -d --build front' + } + } + stage('Run E2E') { + steps { + sh 'docker-compose docker-compose.e2e.yml build e2e' + sh 'docker-compose docker-compose.e2e.yml up e2e' } } }