[CoreBundle] implement name functions and add migration for order-name and wishlist-name #2913
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Behat UI | |
on: | |
push: | |
branches: [ '4.0', '4.1','next' ] | |
paths: | |
- 'composer.json' | |
- 'features/**' | |
- 'behat.yml.dist' | |
- '*.php' | |
- 'src/**' | |
pull_request: | |
branches: [ '4.0', '4.1','next' ] | |
paths: | |
- 'composer.json' | |
- 'features/**' | |
- 'behat.yml.dist' | |
- '*.php' | |
- 'src/**' | |
release: | |
types: [ created ] | |
schedule: | |
- cron: "0 1 * * 1" | |
jobs: | |
behat_ui: | |
runs-on: ubuntu-latest | |
env: | |
APP_ENV: "test" | |
CORESHOP_SKIP_DB_SETUP: "1" | |
PIMCORE_TEST_DB_DSN: "mysql://root:[email protected]:3306/coreshop_test" | |
PIMCORE_INSTALL_ADMIN_USERNAME: "admin" | |
PIMCORE_INSTALL_ADMIN_PASSWORD: "admin" | |
PIMCORE_INSTALL_MYSQL_HOST_SOCKET: "127.0.0.1" | |
PIMCORE_INSTALL_MYSQL_USERNAME: "root" | |
PIMCORE_INSTALL_MYSQL_PASSWORD: "root" | |
PIMCORE_INSTALL_MYSQL_DATABASE: "coreshop_test" | |
PIMCORE_INSTALL_MYSQL_PORT: "3306" | |
PANTHER_EXTERNAL_BASE_URI: "http://localhost:9080/index_test.php" | |
PANTHER_CHROME_ARGUMENTS: "--disable-dev-shm-usage" | |
PANTHER_DEVTOOLS: "0" | |
PIMCORE_KERNEL_CLASS: 'Kernel' | |
strategy: | |
matrix: | |
php: [ 8.1, 8.2 ] | |
pimcore: [ ~11.1.0, ~11.2.0 ] | |
jms: [ ^4.0, ^5.0 ] | |
dependencies: [ highest ] | |
exclude: | |
- php: 8.1 | |
dependencies: lowest | |
services: | |
database: | |
image: "mysql:8" | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
name: "${{ matrix.pimcore }}, PHP ${{ matrix.php }}, Deps ${{ matrix.dependencies }}, JMS ${{ matrix.jms }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: browser-actions/setup-chrome@v1 | |
with: | |
chrome-version: stable | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767 | |
extensions: intl, gd, simpleXML, dom, exif, fileinfo, iconv, mbstring, mysqli, pdo_mysql, zip, zlib | |
tools: symfony | |
- name: Check PHP Version | |
run: php -v | |
- name: Setup DB | |
run: | | |
mysql --host 127.0.0.1 --port ${{ job.services.database.ports['3306'] }} -uroot -proot -e "CREATE DATABASE coreshop_test CHARSET=utf8mb4;" | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: jms/serializer-bundle | |
run: composer require "jms/serializer-bundle:${{ matrix.jms }}" --no-update --no-scripts | |
- name: pimcore/pimcore | |
run: composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update | |
- if: matrix.dependencies == 'highest' | |
name: Install dependencies highest | |
run: composer update --no-progress --prefer-dist --optimize-autoloader | |
- if: matrix.dependencies == 'lowest' | |
name: Install dependencies lowest | |
run: composer update --no-progress --prefer-dist --optimize-autoloader --prefer-lowest | |
- name: Cache clear | |
run: bin/console cache:clear | |
- name: Assets Install | |
run: bin/console assets:install --symlink | |
- name: Install Pimcore | |
run: PIMCORE_KERNEL_CLASS=Kernel vendor/bin/pimcore-install --env=test --skip-database-config | |
- name: Install CoreShop | |
run: | | |
bin/console coreshop:install | |
composer dump-autoload | |
- name: Install Browser Drivers | |
run: vendor/bin/bdi detect drivers | |
- name: Run Symfony Webserver | |
run: symfony server:start --port=9080 --dir=public --daemon --no-tls | |
- name: Run Behat | |
run: vendor/bin/behat --strict --no-interaction -vvv -f progress --config behat.yml.dist -p ui | |
- name: Upload Logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: "Logs (PHP ${{ matrix.php }}, Symfony ${{ matrix.pimcore }})" | |
path: | | |
var/log/ | |
etc/build/ | |
if-no-files-found: ignore |