Fix pipeline #27

Merged
Sieciech merged 21 commits from 4-pipeline into dev 2021-07-28 15:05:04 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 96a4ec0e8f - Show all commits

2
Jenkinsfile vendored
View File

@ -76,7 +76,7 @@ pipeline {
dir(path: 'src/backend') {
sh 'APP_SECRET=`php8.0 -r "echo md5(\\"branch=${BRANCH_NAME};\\");"` && sed -i "s/APP_SECRET=.*/APP_SECRET=${APP_SECRET}/g" .env'
sh '''sed -i 's/DATABASE_URL=.*/DATABASE_URL=${DatabaseUrlTesting}/g' .env.test'''
sh 'composer dump-env test'
sh 'php8.0 /usr/local/bin/composer dump-env test'
sh 'php8.0 bin/console doctrine:schema:update --force';
}