Compare commits

...

21 Commits

Author SHA1 Message Date
Sieciech 6039376310 Merge branch 'dev' into 4-pipeline
CureNetMulti/pipeline/head Something is wrong with the build of this commit Details
2021-07-28 17:03:39 +02:00
Sieciech dd2defd11d fix pipeline 2021-07-28 16:59:21 +02:00
Sieciech 1eb675fb1f fix pipeline
CureNetMulti/pipeline/head This commit looks good Details
2021-07-28 14:27:09 +02:00
Sieciech 3466d86c6a fix all composer paths
CureNetMulti/pipeline/head There was a failure building this commit Details
2021-07-28 14:18:36 +02:00
Sieciech 8e2440c6cd Merge remote-tracking branch 'origin/dev' into 4-pipeline
CureNetMulti/pipeline/pr-dev There was a failure building this commit Details
CureNetMulti/pipeline/head Something is wrong with the build of this commit Details
2021-07-28 11:14:13 +02:00
Sieciech 96a4ec0e8f fix composer path
CureNetMulti/pipeline/pr-dev There was a failure building this commit Details
2021-07-28 11:09:58 +02:00
Sieciech db20421483 Merge remote-tracking branch 'origin/dev' into 4-pipeline 2021-07-28 11:00:30 +02:00
Sieciech af41bab1eb Merge branch '4-pipeline' of http://git.fufle.net/Community/CureNet into 4-pipeline 2021-07-28 11:00:03 +02:00
Sieciech eafce0a52e fix composer path 2021-07-28 10:59:43 +02:00
Sieciech d5b0a740b4 update branches for deploy
CureNetMulti/pipeline/head There was a failure building this commit Details
2021-07-27 22:16:04 +02:00
Sieciech 90d5de728d move path to variables 2021-07-27 19:46:13 +02:00
Sieciech 4a26262bac deply backend fix 2021-07-27 18:15:01 +02:00
Sieciech 5f9789c437 prepare for deploy 2021-07-27 17:43:14 +02:00
Sieciech 4ce25f5a61 change database 2021-07-27 17:24:02 +02:00
Sieciech 9e1c7e6870 fix syntax 2021-07-27 16:50:17 +02:00
Sieciech 53c6780197 change php version to 8.0 2021-07-27 16:19:35 +02:00
Sieciech ddd5c55615 lint + pipeline 2021-07-27 14:38:48 +02:00
Sieciech 0a40523c2c path 2021-07-27 14:19:14 +02:00
Sieciech 797f83b777 pipeline 2021-07-27 14:05:54 +02:00
Sieciech 1d9f5bbc50 Merge remote-tracking branch 'origin/dev' into 4-pipeline 2021-07-27 13:49:20 +02:00
admin 5280f17456 Added Jenkinsfile 2021-07-27 11:43:23 +00:00
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -123,8 +123,8 @@ pipeline {
stage('Backend') {
steps {
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=${DatabaseUrl}/g" .env.dev'
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=${DatabaseUrl}/g' .env.dev'''
sh 'php8.0 /usr/local/bin/composer dump-env dev'
}