mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-23 03:12:14 +00:00
Added gitlab-ci
This commit is contained in:
parent
739fe46ce9
commit
6facd02730
39
.gitlab-ci.yml
Normal file
39
.gitlab-ci.yml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# This file is a template, and might need editing before it works on your project.
|
||||||
|
# Select image from https://hub.docker.com/_/php/
|
||||||
|
image: php:latest
|
||||||
|
|
||||||
|
# Select what we should cache between builds
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- vendor/
|
||||||
|
- node_modules/
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- apt-get update -yqq
|
||||||
|
- apt-get install -yqq git libzip-dev libmcrypt-dev libpq-dev libcurl4-gnutls-dev libicu-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 libsqlite3-dev libaspell-dev libsnmp-dev libpcre3-dev libtidy-dev
|
||||||
|
# Install PHP extensions
|
||||||
|
- docker-php-ext-install mbstring pdo_pgsql curl json intl gd xml zip bz2 opcache
|
||||||
|
# Install & enable Xdebug for code coverage reports
|
||||||
|
- pecl install xdebug
|
||||||
|
- docker-php-ext-enable xdebug
|
||||||
|
# Install and run Composer
|
||||||
|
- curl -sS https://getcomposer.org/installer | php
|
||||||
|
- php composer.phar install
|
||||||
|
|
||||||
|
# Bring in any services we need http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
|
||||||
|
# See http://docs.gitlab.com/ce/ci/services/README.html for examples.
|
||||||
|
services:
|
||||||
|
- mysql:5.7
|
||||||
|
|
||||||
|
# Set any variables we need
|
||||||
|
variables:
|
||||||
|
# Configure mysql environment variables (https://hub.docker.com/r/_/mysql/)
|
||||||
|
MYSQL_DATABASE: adminpanl
|
||||||
|
MYSQL_ROOT_PASSWORD: adminpanel
|
||||||
|
|
||||||
|
# Run our tests
|
||||||
|
# If Xdebug was installed you can generate a coverage report and see code coverage metrics.
|
||||||
|
test:
|
||||||
|
script:
|
||||||
|
- vendor/bin/phpunit --coverage-text --colors=never
|
||||||
|
- vendor/bin/codacycoverage clover tmp/code-coverage.xml
|
@ -30,6 +30,7 @@
|
|||||||
"squizlabs/php_codesniffer": "^3.4",
|
"squizlabs/php_codesniffer": "^3.4",
|
||||||
"symfony/var-dumper": "^4.2",
|
"symfony/var-dumper": "^4.2",
|
||||||
"phpunit/phpunit": "^8.1",
|
"phpunit/phpunit": "^8.1",
|
||||||
"codacy/coverage": "^1.4"
|
"codacy/coverage": "^1.4",
|
||||||
|
"phpmd/phpmd": "^2.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3336
composer.lock
generated
Normal file
3336
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user