test new gitlabci image & script
This commit is contained in:
133
.gitlab-ci.yml
133
.gitlab-ci.yml
@@ -1,80 +1,65 @@
|
|||||||
# This file is a template, and might need editing before it works on your project.
|
image: lorisleiva/laravel-docker:latest
|
||||||
# Official framework image. Look for the different tagged releases at:
|
|
||||||
# https://hub.docker.com/r/library/php
|
|
||||||
image: php:latest
|
|
||||||
|
|
||||||
# Pick zero or more services to be used on all builds.
|
# https://github.com/lorisleiva/laravel-docker/blob/master/gitlab/.gitlab-ci.deployments.yml
|
||||||
# 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:
|
|
||||||
- mysql:latest
|
|
||||||
|
|
||||||
variables:
|
.init_ssh: &init_ssh |
|
||||||
MYSQL_DATABASE: "portal"
|
eval $(ssh-agent -s)
|
||||||
MYSQL_USER: "root"
|
echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
||||||
MYSQL_PASSWORD: "app"
|
mkdir -p ~/.ssh
|
||||||
MYSQL_ROOT_PASSWORD: "secret"
|
chmod 700 ~/.ssh
|
||||||
|
[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||||
|
|
||||||
# This folder is cached between builds
|
# Replace the last line with the following lines if you'd rather
|
||||||
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
|
# leave StrictHostKeyChecking enabled (replace yourdomain.com):
|
||||||
cache:
|
#
|
||||||
paths:
|
# ssh-keyscan yourdomain.com >> ~/.ssh/known_hosts
|
||||||
- vendor/
|
# chmod 644 ~/.ssh/known_hosts
|
||||||
- node_modules/
|
|
||||||
|
|
||||||
# This is a basic example for a gem or script which doesn't use
|
.change_file_permissions: &change_file_permissions |
|
||||||
# services such as redis or postgres
|
find . -type f -not -path "./vendor/*" -exec chmod 664 {} \;
|
||||||
before_script:
|
find . -type d -not -path "./vendor/*" -exec chmod 775 {} \;
|
||||||
# Update packages
|
|
||||||
- apt-get update -yqq
|
|
||||||
# Prep for Node
|
|
||||||
- apt-get install gnupg -yqq
|
|
||||||
# Upgrade to Node 8
|
|
||||||
- curl -sL https://deb.nodesource.com/setup_8.x | bash -
|
|
||||||
# Install dependencies
|
|
||||||
- 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 -yqq
|
|
||||||
#- apt-get install php-mbstring php-curl php-json php-intl php-gd php-xml php-zip php-bz2 -yqq
|
|
||||||
- apt-get install mariadb-server -yqq
|
|
||||||
# Install php extensions
|
|
||||||
- docker-php-ext-install pdo pdo_mysql tokenizer xml pcntl curl json
|
|
||||||
# - docker-php-ext-install mbstring intl gd xml bz2 opcache pdo_mysql curl json zip
|
|
||||||
# Install php extensions
|
|
||||||
- docker-php-ext-install mbstring pdo_mysql curl json intl gd xml zip bz2 opcache
|
|
||||||
# Install & enable Xdebug for code coverage reports
|
|
||||||
- pecl install xdebug
|
|
||||||
- docker-php-ext-enable xdebug
|
|
||||||
# Install Composer and project dependencies.
|
|
||||||
- curl -sS https://getcomposer.org/installer | php
|
|
||||||
- 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:
|
composer:
|
||||||
|
stage: build
|
||||||
|
cache:
|
||||||
|
key: ${CI_COMMIT_REF_SLUG}-composer
|
||||||
|
paths:
|
||||||
|
- vendor/
|
||||||
script:
|
script:
|
||||||
# run laravel tests
|
- composer install --prefer-dist --no-ansi --no-interaction --no-progress --no-scripts
|
||||||
- php vendor/bin/phpunit --coverage-text --colors=never
|
- cp .env.example .env
|
||||||
# run frontend tests
|
- php artisan key:generate
|
||||||
# if you have any task for testing frontend
|
artifacts:
|
||||||
# set it in your package.json script
|
expire_in: 1 month
|
||||||
# comment this out if you don't have a frontend test
|
paths:
|
||||||
- npm test
|
- vendor/
|
||||||
|
- .env
|
||||||
|
|
||||||
|
npm:
|
||||||
|
stage: build
|
||||||
|
cache:
|
||||||
|
key: ${CI_COMMIT_REF_SLUG}-npm
|
||||||
|
paths:
|
||||||
|
- node_modules/
|
||||||
|
script:
|
||||||
|
- npm install
|
||||||
|
- npm run production
|
||||||
|
artifacts:
|
||||||
|
expire_in: 1 month
|
||||||
|
paths:
|
||||||
|
- node_modules/
|
||||||
|
- public/css/
|
||||||
|
- public/js/
|
||||||
|
|
||||||
|
codestyle:
|
||||||
|
stage: test
|
||||||
|
dependencies: []
|
||||||
|
script:
|
||||||
|
- phpcs --standard=PSR2 --extensions=php --ignore=app/Support/helpers.php app
|
||||||
|
|
||||||
|
phpunit:
|
||||||
|
stage: test
|
||||||
|
dependencies:
|
||||||
|
- composer
|
||||||
|
script:
|
||||||
|
- phpunit --coverage-text --colors=never
|
||||||
|
|||||||
Reference in New Issue
Block a user