diff --git a/Jenkinsfile b/Jenkinsfile index 246c0af61..6b3a1b480 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -66,50 +66,75 @@ pipeline { sh 'pnpm install --prefer-offline' } } - stage('E2E') { + stage('Test') { when { expression { !PROTECTED_BRANCH } } environment { - CREDENTIALS = credentials('docker-registry') + NODE_ENV = "" } - steps { - script { - def packageJson = readJSON file: 'package.json' - env.VERSION = "${packageJson.version}-build${env.BUILD_ID}" + parallel{ + stage('Unit') { + steps { + sh 'pnpm run test:unit:ci' + } + post { + always { + junit( + testResults: 'junitresults.xml', + allowEmptyResults: true + ) + } + } } - // sh "docker network rm e2e_default || true" - // sh 'docker network create e2e_default || true' - sh 'rm -rf salix' - sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git' - // Db - sh 'cd salix && pnpm i --prefer-offline @verdnatura/myt && npx myt run -t -d' - // Backend - 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' - // Frontend - sh 'quasar build' - sh 'docker-compose -f docker-compose.e2e.yml build front' - sh 'docker-compose -f docker-compose.e2e.yml up -d front' - // E2E - sh 'docker-compose -f docker-compose.e2e.yml build e2e' - sh 'docker-compose -f docker-compose.e2e.yml up e2e' - } - post { - failure { - echo 'Removing containers...' - sh 'docker rm -f vn-database || true' - sh 'docker rm -f salix_e2e || true' - sh 'docker-compose -f docker-compose.e2e.yml down || true' - } - always { - junit( - testResults: 'junitresults.xml', - allowEmptyResults: true - ) + stage('E2E') { + when { + expression { !PROTECTED_BRANCH } + } + environment { + CREDENTIALS = credentials('docker-registry') + } + steps { + script { + def packageJson = readJSON file: 'package.json' + env.VERSION = "${packageJson.version}-build${env.BUILD_ID}" + } + // sh "docker network rm e2e_default || true" + // sh 'docker network create e2e_default || true' + sh 'rm -rf salix' + sh 'git clone https://gitea.verdnatura.es/verdnatura/salix.git' + // Db + sh 'cd salix && pnpm i --prefer-offline @verdnatura/myt && npx myt run -t -d' + // Backend + 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' + // Frontend + sh 'quasar build' + sh 'docker-compose -f docker-compose.e2e.yml build front' + sh 'docker-compose -f docker-compose.e2e.yml up -d front' + // E2E + sh 'docker-compose -f docker-compose.e2e.yml build e2e' + sh 'docker-compose -f docker-compose.e2e.yml up e2e' + } + post { + failure { + echo 'Removing containers...' + sh 'docker rm -f vn-database || true' + sh 'docker rm -f salix_e2e || true' + sh 'docker-compose -f docker-compose.e2e.yml down || true' + } + always { + junit( + testResults: 'junitresults.xml', + allowEmptyResults: true + ) + } + } } } + } + stage('Build') { when { expression { PROTECTED_BRANCH }