Jenkinsfile fix

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

2
Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ node {
}
}
docker.image('circleci/php:7.4').inside("--link ${c.id}:db") {
stage("Prepare container") { sh 'apt-get update && apt-get install -y php-mysql' }
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' }
}