Skip to content

xima-media/xima-gitlab-ci-templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XIMA GitLab-CI Templates

GitLab-CI Templates

This repository provides several templates for reusable GitLab-CI jobs.

Installation

See .gitlab-ci.yml.dist for example GitLab-CI configuration.

Use include to reference template files: (see .gitlab-ci.yaml.dist for all possible includes)

include:
   - 'https://raw.githubusercontent.com/xima-media/xima-gitlab-ci-templates/1.x/.base.yml'
   - 'https://raw.githubusercontent.com/xima-media/xima-gitlab-ci-templates/1.x/analyse/analyse-composer.yml'
   - ... 

Extend and override configuration variables:

variables:
  PATH_APP_DIR: "app/"

Extend and override further ci jobs.

See further default configuration in the .base.yml.

Description of all the jobs

Analyse

Job name File Description
analyse:composer:lint analyse-composer-lint.yml Use composer normalize to lint composer.json via composer run composer:normalize:check
analyse:composer:security:scheduled* analyse-composer-security-scheduled.yml Run composer dependency check via vendor/bin/dep security:check:composer
analyse:editorconfig analyse-editorconfig.yml Check editorconfig for project files via composer run editorconfig:check
analyse:php:cs-fixer analyse-php-cs-fixer.yml Run php cs fixer to fix regarding coding standards via composer run php:cs-fixer:check
analyse:php:lint analyse-php-lint.yml Run php lint via composer run php:lint
analyse:php:rector analyse-php-rector.yml Run php rector via composer run php:rector:check
analyse:php:stan analyse-php-stan.yml Run php stan via composer run php:stan:check
analyse:xml:lint analyse-xml-lint.yml Lint xml files via composer run xml:lint
analyse:yaml:lint analyse-yaml-lint.yml Lint yaml files via composer run yaml:lint
analyse:typoscript:lint analyse-typoscript-lint.yml Lint typoscript/tsconfig files via composer run typoscript:lint

Build

Job name File Description
build:node build-node-typo3.yml TYPO3 specific node build job
build:php build-php-typo3.yml TYPO3 specific php build job
build:node build-node-drupal.yml Drupal specific node build job
build:php build-php-drupal.yml Drupal specific php build job
build:node build-node-symfony.yml Symfony specific node build job
build:php build-php-symfony.yml Symfony specific php build job

Deploy

Job name File Description
deploy:feature deploy-feature.yml Deploy a feature branch instance to a staging system
deploy:feature:rollback deploy-feature-rollback.yml Rollback a deployment release for a feature branch
deploy:feature:stop deploy-feature-stop.yml Stop a feature branch instance and remove the application from the staging system (trigger the downstream job)
deploy:feature:stop:downstream deploy-feature-stop-downstream.yml Stop a feature branch instance and remove the application from the staging system
deploy:prod deploy-prod.yml Deploy to the production system
deploy:prod:rollback deploy-prod-rollback.yml Rollback a deployment release for production

Sync

Job name File Description
sync:feature sync-feature.yml Sync the data for a feature branch instance
sync:feature:scheduled* sync-feature-scheduled.yml Sync the data for a feature branch instance via a periodic schedule

Test

Job name File Description
test:feature:codeception test-feature-codeception.yml Test the feature branch instance via codeception
test:feature:lighthouse test-feature-lighthouse.yml Test the feature branch instance via google lighthouse
test:prod:lighthouse test-prod-lighthouse.yml The the production system via google lighthouse

* these jobs are scheduled and need a "Pipeline Schedule" to trigger them.

Setup Pipeline Schedules

In your gitlab project navigat to Build -> Pipeline Schedules and create a news pipeline schedule. Beside giving it a description and an interval you need to specify a branch and optional variables.

In most cases the branch "main" should be the preferred choice.

Variable Setup for scheduled jobs:

Job: analyse:composer:security:scheduled

Variable Value Description
SCHEDULE_TASK_NAME analyse:composer:security:scheduled The job name to execute

Job: sync:feature:scheduled

Variable Value Description
SCHEDULE_TASK_NAME sync:feature:scheduled The job name to execute
DEPLOYER_CONFIG_FEATURE_SYNC_CONFIG ${CI_PROJECT_DIR}/.deployment/db-sync-tool/sync-prod-to-stage.yaml config for the scheduled sync job

Adjustments

Paths

If your composer file(s) are not located in project root directory, you can change it to your needs. PATH_CI_DIR specifies path to composer.json with deployment dependencies. If you have a separate composer.json for project dependencies yau can adapt that path as well.

variables:
  # project paths - default both to root directory
  PATH_CI_DIR: "${CI_PROJECT_DIR}"
  PATH_APP_DIR: "${PATH_CI_DIR}"

Jobs

You can override or extend the given template jobs by adjusting individual aspects, e.g. the needed artifacts from the build:node job:

build:node:
  artifacts:
    paths:
      - ${PATH_APP_DIR}/packages/xima-sitepackage/Resources/Public
      - ${PATH_APP_DIR}/packages/xima-media/Resources/Public

Versions

Additionally configure used versions within the variables (default values are stored in the .base.yml):

variables:
  BUILD_COMPOSER_VERSION: "2.6"
  BUILD_NODE_VERSION: "18"
  PHP_VERSION: "8.2"

Feature-stop downstream branch

You can override on which branch the downstream pipeline should be triggered. Default is "main". This is useful if main branch does not contain the current pipeline setup and therefore can't handel the trigger.

.feature-branches:
  variables:
    FEATURE_STOP_DOWNSTREAM_BRANCH: main-v12

Development

The development workflow provides for all minor changes to be checked into the "1.x" branch so that all associated projects automatically receive the latest version from this branch. If there are breaking changes, a new branch "2.x" is created so that the associated projects can be updated manually.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •