Skip to content

Commit

Permalink
fixing syntax error when concatting the env var for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thelamer committed Jul 16, 2018
1 parent 4fc0db3 commit 75c5d79
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ pipeline {
php7-tidy \
php7-simplexml \
tar'
MULTIARCH='true'
CI='true'
CI_PORT='80'
CI_SSL='false'
CI_DELAY='5'
CI_DOCKERENV='DB_HOST=' + credentials('mysql_test_host') + '|DB_DATABASE=bookstack|DB_USERNAME=root|DB_PASSWORD=' + credentials('mysql_test_password')
CI_AUTH='user:password'
CI_WEBPATH=''
MULTIARCH = 'true'
CI = 'true'
CI_PORT = '80'
CI_SSL = 'false'
CI_DELAY = '5'
TEST_MYSQL_HOST = credentials('mysql_test_host')
TEST_MYSQL_PASSWORD = credentials('mysql_test_password')
CI_DOCKERENV = 'DB_HOST=${TEST_MYSQL_HOST}|DB_DATABASE=bookstack|DB_USERNAME=root|DB_PASSWORD=${TEST_MYSQL_PASSWORD}'
CI_AUTH = 'user:password'
CI_WEBPATH = ''
}
stages {
// Setup all the basic environment variables needed for the build
Expand Down

0 comments on commit 75c5d79

Please sign in to comment.