2017-12-05 00:26:53 +00:00
|
|
|
# This file is a template, and might need editing before it works on your project.
|
|
|
|
# Official framework image. Look for the different tagged releases at:
|
|
|
|
# https://hub.docker.com/r/library/php
|
2018-04-10 11:46:24 +00:00
|
|
|
image: registry.leenooks.net/leenooks/php:7.2-fpm-plus
|
2017-12-05 00:26:53 +00:00
|
|
|
|
|
|
|
# Pick zero or more services to be used on all builds.
|
|
|
|
# Only needed when using a docker container to run your tests in.
|
|
|
|
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service
|
|
|
|
services:
|
|
|
|
- mariadb:10.3
|
|
|
|
|
|
|
|
variables:
|
2017-12-07 23:17:18 +00:00
|
|
|
MYSQL_DATABASE: testing
|
|
|
|
MYSQL_ROOT_PASSWORD: test
|
2017-12-12 05:28:49 +00:00
|
|
|
MYSQL_USER: test
|
|
|
|
MYSQL_PASSWORD: test
|
2017-12-05 00:26:53 +00:00
|
|
|
|
|
|
|
# This folder is cached between builds
|
|
|
|
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- vendor/
|
|
|
|
- node_modules/
|
|
|
|
|
|
|
|
# This is a basic example for a gem or script which doesn't use
|
|
|
|
# services such as redis or postgres
|
|
|
|
before_script:
|
|
|
|
# Update packages
|
2017-12-08 03:26:25 +00:00
|
|
|
#- echo 'deb http://deb.debian.org/debian jessie non-free' >> /etc/apt/sources.list.d/non-free.list
|
|
|
|
#- apt-get update -yqq
|
2017-12-05 00:26:53 +00:00
|
|
|
|
2018-04-10 11:58:25 +00:00
|
|
|
# Add gnupg & zip
|
|
|
|
- apt-get update -yqq && apt-get install gnupg2 unzip -yqq
|
2018-04-10 11:55:09 +00:00
|
|
|
|
2017-12-08 09:53:52 +00:00
|
|
|
# Upgrade to Node 9
|
|
|
|
- curl -sL https://deb.nodesource.com/setup_9.x | bash -
|
2017-12-05 00:26:53 +00:00
|
|
|
|
|
|
|
# Install dependencies
|
2017-12-08 03:26:25 +00:00
|
|
|
#- apt-get install git nodejs libcurl4-gnutls-dev libicu-dev libmcrypt-dev libvpx-dev libjpeg-dev libpng-dev libxpm-dev zlib1g-dev libfreetype6-dev libxml2-dev libexpat1-dev libbz2-dev libgmp3-dev libldap2-dev unixodbc-dev libpq-dev libsqlite3-dev libaspell-dev libsnmp-dev libpcre3-dev libtidy-dev pkg-config libsnmp-dev snmp-mibs-downloader -yqq
|
|
|
|
#- download-mibs
|
|
|
|
- apt-get install git nodejs -yqq
|
2017-12-05 00:26:53 +00:00
|
|
|
|
|
|
|
# Install php extensions
|
2017-12-08 03:26:25 +00:00
|
|
|
#- docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include/
|
|
|
|
#- docker-php-ext-install pdo_mysql bz2 gettext sockets gmp gd pcntl snmp
|
|
|
|
#- docker-php-ext-install mbstring mcrypt pdo_mysql curl json intl gd xml zip bz2 opcache
|
2017-12-05 00:26:53 +00:00
|
|
|
|
|
|
|
# Install & enable Xdebug for code coverage reports
|
|
|
|
- pecl install xdebug
|
|
|
|
- docker-php-ext-enable xdebug
|
|
|
|
|
|
|
|
# Install Composer and project dependencies.
|
2017-12-08 03:37:05 +00:00
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
2017-12-05 00:26:53 +00:00
|
|
|
- php composer.phar install
|
|
|
|
|
|
|
|
# Install Node dependencies.
|
|
|
|
# comment this out if you don't have a node dependency
|
|
|
|
- npm install
|
|
|
|
|
|
|
|
# Copy over testing configuration.
|
|
|
|
# Don't forget to set the database config in .env.testing correctly
|
|
|
|
# DB_HOST=mysql
|
|
|
|
# DB_DATABASE=project_name
|
|
|
|
# DB_USERNAME=root
|
|
|
|
# DB_PASSWORD=secret
|
|
|
|
- cp .env.testing .env
|
|
|
|
|
|
|
|
# Run npm build
|
|
|
|
# comment this out if you don't have a frontend build
|
|
|
|
# you can change this to to your frontend building script like
|
|
|
|
# npm run build
|
|
|
|
- npm run dev
|
|
|
|
|
|
|
|
# Generate an application key. Re-cache.
|
|
|
|
- php artisan key:generate
|
|
|
|
- php artisan config:cache
|
|
|
|
|
|
|
|
# Run database migrations.
|
|
|
|
- php artisan migrate
|
|
|
|
|
|
|
|
# Run database seed
|
|
|
|
- php artisan db:seed
|
|
|
|
|
|
|
|
test:
|
|
|
|
tags:
|
|
|
|
- php
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
|
|
|
script:
|
|
|
|
# run laravel tests
|
|
|
|
- php vendor/bin/phpunit --coverage-text --colors=never
|
|
|
|
|
|
|
|
# run frontend tests
|
|
|
|
# if you have any task for testing frontend
|
|
|
|
# set it in your package.json script
|
|
|
|
# comment this out if you don't have a frontend test
|
|
|
|
- npm test
|