From 368063750f3adaf2ee02d5efd3922d48bd04fbe5 Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 14 Feb 2025 13:36:28 +0100 Subject: [PATCH] build: refs #6695 add Docker Compose command for Cypress setup in Jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index c0f4964fd..18e7d7490 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -102,6 +102,8 @@ pipeline { env.NETWORK = "${PROJECT_NAME}-${env.BRANCH_NAME}-${env.BUILD_ID}" cleanDockerE2E() sh "pnpm exec cypress install" + sh "docker-compose -p lilium-e2e -f docker-compose.e2e.yml build cypress-setup" + // sh "docker network create ${env.NETWORK} || true" }