Update .gitlab-ci.yml

This commit is contained in:
Romain Delanoë
2021-10-01 19:41:35 +00:00
parent b5afb216de
commit 86a81d367e

View File

@@ -1,66 +1,20 @@
image: edbizarro/gitlab-ci-pipeline-php:7.4 FROM php:7.4
stages: # Update packages
- preparation RUN apt-get update
- building
- syntax
- testing
- deploy
cache: # Install PHP and composer dependencies
key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" RUN apt-get install -qq git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev
# This is a basic example for a gem or script which doesn't use # Clear out the local repository of retrieved package files
# services such as redis or postgres RUN apt-get clean
before_script:
# 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
# Install php extensions
- docker-php-ext-install 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
yarn: # Install needed extensions
stage: preparation # Here you can install any other extension that you need during the test and deployment process
script: RUN docker-php-ext-install mcrypt pdo_mysql zip
- yarn install --pure-lockfile
artifacts: # Install Composer
paths: RUN curl --silent --show-error "https://getcomposer.org/installer" | php -- --install-dir=/usr/local/bin --filename=composer
- node_modules/
expire_in: 1 days # Install Laravel Envoy
when: always RUN composer global require "laravel/envoy=~1.0"
cache:
paths:
- node_modules/