creativestyle/magesuite-build

There is no license information available for the latest version (v2.3.3) of this package.

Build automation for MageSuite

Installs: 91

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 0

Type:magento2-component

v2.3.3 2024-04-04 06:29 UTC

This package is auto-updated.

Last update: 2024-04-04 07:04:35 UTC


README

Contains phing automation for running builds of projects.

The docker container used for running the tests can be found on our GitHub and Docker Hub.

Documentation

Prerequisites

Following software has to be installed on host machine in order for all functions to work properly.

phing
php
composer
patch
docker
automake
autoconf
npm
yarn
gcc
gcc-c++ 
make

What does the build do

  • composer update
  • build selected frontend themes
  • run all tests

build.xml

Before build can be executed build.xml file must be created and placed in main directory.

It must contain basic configuration that consists of:

  • project name
  • docker container name for running unit and integration tests
  • comma separated list of all themes that should be built
<?xml version="1.0" encoding="UTF-8"?>
<project name="{{PROJECT_NAME}}" default="help" basedir="." description="{{PROJECT_NAME}} build definition">
    <import file="build/build.xml"/>

    <property name="themes" value="creativeshop,{{PROJECT_THEMES_NAMES}}"/>
    <property name="project" value="{{PROJECT_NAME}}"/>
    <property name="testing_docker_tag" value="php74-es7-mariadb104-stable" override="true"/>
    <property name="testing_docker_image" value="mageops/magento-run-tests" override="true"/>
</project>

Placeholders should be replaced with:

  • {{PROJECT_NAME}} - name of a project, example: toys-shop
  • {{PROJECT_THEMES_NAMES}} - comma separated list of names of all custom themes that should be built, contained in vendor/creativestyle directory. Name must be provided without theme- prefix, for vendor/creativestyle/theme-toys-shop placeholder value will become toys-shop

Running build

In order to run build execute following commands:

[[ -d "vendor" ]] || composer update
php -d memory_limit=-1 vendor/bin/phing ci-build