Jenkinsfile fix

This commit is contained in:
Artur Nowakowski 2019-11-30 18:43:11 +01:00
parent 3cf8c8e2dd
commit 474fb24fd1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ node {
sh 'while ! mysqladmin ping -hdb --silent; do sleep 1; done'
}
}
docker.image('circleci/php:7.4').inside("--link ${c.id}:db") {
docker.image('circleci/php:7.4').inside("--user 0:0 --link ${c.id}:db") {
stage("Prepare container") { sh 'docker-php-ext-install -j$(nproc) pdo_mysql' }
stage("Build") { sh 'composer install && mv .env.example .env' }
stage("Test") { sh 'vendor/bin/phpunit' }