pipelines:
branches:
develop:
- step:
image: php:7.0
script:
- apt-get update && apt-get install -y unzip
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- composer install
services:
- database
definitions:
services:
database:
image: mysql
environment:
MYSQL_DATABASE: pipelines
MYSQL_RANDOM_ROOT_PASSWORD: yes
MYSQL_USERNAME: pipeline_user
MYSQL_PASSWORD: pipeline_password
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.