mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 21:52:21 +00:00
Add gitlab CI file
This commit is contained in:
parent
9a97a29aa3
commit
6232aff129
2 changed files with 39 additions and 0 deletions
18
test/docker_install.sh
Normal file
18
test/docker_install.sh
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
# We need to install dependencies only for Docker
|
||||
[[ ! -e /.dockerenv ]] && exit 0
|
||||
|
||||
set -xe
|
||||
|
||||
# Install git (the php image doesn't have it) which is required by composer
|
||||
apt-get update -yqq
|
||||
apt-get install git -yqq
|
||||
|
||||
# Install phpunit, the tool that we will use for testing
|
||||
curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
||||
chmod +x /usr/local/bin/phpunit
|
||||
|
||||
# Install mysql driver
|
||||
# Here you can install any other extension that you need
|
||||
docker-php-ext-install redis
|
Loading…
Add table
Add a link
Reference in a new issue