From 025fc9776b0a488b666e0a36801f95860e052745 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 9 Jan 2024 10:32:58 +1000 Subject: [PATCH] Pre-build cypress images before runnings integration tests --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e0475722..3f4ae53a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -98,6 +98,12 @@ pipeline { archiveArtifacts(artifacts: 'docs/docs.tgz', allowEmptyArchive: false) } } + stage('Cypress') { + steps { + sh 'docker-compose build cypress-sqlite' + sh 'docker-compose build cypress-mysql' + } + } } } stage('Integration Tests') {