Pre-build cypress images before runnings integration tests

This commit is contained in:
Jamie Curnow 2024-01-09 10:32:58 +10:00
parent b699f05f47
commit 025fc9776b
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E

6
Jenkinsfile vendored
View File

@ -98,6 +98,12 @@ pipeline {
archiveArtifacts(artifacts: 'docs/docs.tgz', allowEmptyArchive: false) 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') { stage('Integration Tests') {