mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
This PR has been generated automatically. For more details see [upmerge_pr.yaml](/Sylius/Sylius/blob/2.3/.github/workflows/upmerge_pr.yaml). **Remember!** The upmerge should always be merged with using `Merge pull request` button. In case of conflicts, please resolve them manually with usign the following commands: ``` git fetch upstream gh pr checkout <this-pr-number> git merge upstream/2.2 -m "Resolve conflicts between 2.1 and 2.2" ``` If you use other name for the upstream remote, please replace `upstream` with the name of your remote pointing to the `Sylius/Sylius` repository. Once the conflicts are resolved, please run `git merge --continue` and push the changes to this PR.
221 lines
8.9 KiB
YAML
221 lines
8.9 KiB
YAML
name: Tests (MySQL)
|
|
|
|
on:
|
|
workflow_dispatch: ~
|
|
workflow_call:
|
|
inputs:
|
|
branch:
|
|
description: "Branch"
|
|
required: false
|
|
type: string
|
|
default: ""
|
|
type:
|
|
description: "Type of the build"
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
get-matrix:
|
|
runs-on: ubuntu-latest
|
|
name: "Get matrix"
|
|
outputs:
|
|
matrix: ${{ steps.matrix.outputs.prop }}
|
|
steps:
|
|
- name: "Checkout (With Branch)"
|
|
if: "${{ inputs.branch != '' }}"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: "Checkout"
|
|
uses: actions/checkout@v4
|
|
if: "${{ inputs.branch == '' }}"
|
|
|
|
- name: "Get matrix"
|
|
id: matrix
|
|
uses: notiz-dev/github-action-json-property@release
|
|
with:
|
|
path: '.github/workflows/matrix.json'
|
|
prop_path: '${{ inputs.type }}.e2e-mysql'
|
|
|
|
phpunit-cli-api:
|
|
needs: get-matrix
|
|
runs-on: ubuntu-latest
|
|
name: "PHPUnit, CLI, API, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}"
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }}
|
|
|
|
env:
|
|
APP_ENV: ${{ matrix.env || 'test_cached' }}
|
|
BEHAT_BASE_CMD: "vendor/bin/behat --colors --strict --no-interaction -vvv -f progress"
|
|
BEHAT_RERUN_CMD: "vendor/bin/behat --colors --strict --no-interaction -vvv -f pretty --rerun"
|
|
|
|
steps:
|
|
- name: Set variables
|
|
shell: bash
|
|
env:
|
|
BRANCH: ${{ inputs.branch }}
|
|
run: |
|
|
if [ "$BRANCH" == "1.14" ]; then
|
|
echo "NODE_VERSION=20.x" >> $GITHUB_ENV
|
|
else
|
|
echo "NODE_VERSION=24.x" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: "Checkout (With Branch)"
|
|
if: "${{ inputs.branch != '' }}"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: "Checkout"
|
|
if: "${{ inputs.branch == '' }}"
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Restrict Twig
|
|
if: matrix.twig == '^2.12'
|
|
run: composer require --no-update --no-scripts --no-interaction "twig/twig:${{ matrix.twig }}"
|
|
|
|
- name: Prepare manifest.json files
|
|
if: "${{ inputs.branch != '1.14' }}"
|
|
run: |
|
|
mkdir -p public/build/admin
|
|
mkdir -p public/build/shop
|
|
mkdir -p public/build/app/admin
|
|
mkdir -p public/build/app/shop
|
|
echo "{}" > public/build/admin/manifest.json
|
|
echo "{}" > public/build/shop/manifest.json
|
|
echo "{}" > public/build/app/admin/manifest.json
|
|
echo "{}" > public/build/app/shop/manifest.json
|
|
|
|
- name: Build application
|
|
uses: SyliusLabs/BuildTestAppAction@v4
|
|
with:
|
|
build_type: "sylius"
|
|
cache_key: "${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}"
|
|
cache_restore_key: "${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}"
|
|
e2e: "yes"
|
|
database: "mysql:${{ matrix.mysql }}"
|
|
php_version: ${{ matrix.php }}
|
|
symfony_version: ${{ matrix.symfony }}
|
|
node_version: ${{ env.NODE_VERSION }}
|
|
|
|
- name: Fix permissions for Symfony logs directory
|
|
run: |
|
|
LOGS_DIR=$(bin/console debug:container --parameter=kernel.logs_dir | grep 'kernel.logs_dir' | awk '{print $2}')
|
|
mkdir -p "$LOGS_DIR"
|
|
chmod -R 777 "$LOGS_DIR"
|
|
|
|
- name: Test installer
|
|
run: bin/console sylius:install --no-interaction -vvv
|
|
|
|
- name: Run PHPUnit
|
|
run: |
|
|
vendor/bin/phpunit --testsuite all --colors=always
|
|
vendor/bin/phpunit --testsuite="Sylius Test Suite" --colors=always
|
|
|
|
- name: Run CLI Behat
|
|
run: |
|
|
$BEHAT_BASE_CMD --tags="@cli&&~@todo" --suite-tags="@cli" || \
|
|
$BEHAT_RERUN_CMD --tags="@cli&&~@todo" --suite-tags="@cli"
|
|
|
|
- name: Run API Behat
|
|
run: |
|
|
$BEHAT_BASE_CMD --tags="~@todo&&~@cli" --suite-tags="@api,@domain" || \
|
|
$BEHAT_RERUN_CMD --tags="~@todo&&~@cli" --suite-tags="@api,@domain"
|
|
|
|
- name: Upload logs
|
|
uses: actions/upload-artifact@v4
|
|
if: failure()
|
|
with:
|
|
name: "Logs (PHPUnit, CLI, API, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}) - ${{ github.run_id }}-${{ github.run_number }}"
|
|
path: |
|
|
etc/build/
|
|
var/log
|
|
if-no-files-found: ignore
|
|
overwrite: true
|
|
|
|
behat-ui:
|
|
needs: get-matrix
|
|
runs-on: ubuntu-latest
|
|
name: "UI, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}"
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }}
|
|
|
|
env:
|
|
APP_ENV: ${{ matrix.env || 'test_cached' }}
|
|
BEHAT_BASE_CMD: "vendor/bin/behat --colors --strict --no-interaction -vvv -f progress"
|
|
BEHAT_RERUN_CMD: "vendor/bin/behat --colors --strict --no-interaction -vvv -f pretty --rerun"
|
|
|
|
steps:
|
|
- name: Set variables
|
|
shell: bash
|
|
env:
|
|
BRANCH: ${{ inputs.branch }}
|
|
run: |
|
|
if [ "$BRANCH" == "1.14" ]; then
|
|
echo "NODE_VERSION=20.x" >> $GITHUB_ENV
|
|
else
|
|
echo "NODE_VERSION=24.x" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: "Checkout (With Branch)"
|
|
if: "${{ inputs.branch != '' }}"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: "Checkout"
|
|
if: "${{ inputs.branch == '' }}"
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Restrict Twig
|
|
if: matrix.twig == '^2.12'
|
|
run: composer require --no-update --no-scripts --no-interaction "twig/twig:${{ matrix.twig }}"
|
|
|
|
- name: Prepare manifest.json files
|
|
if: "${{ inputs.branch != '1.14' }}"
|
|
run: |
|
|
mkdir -p public/build/admin
|
|
mkdir -p public/build/shop
|
|
mkdir -p public/build/app/admin
|
|
mkdir -p public/build/app/shop
|
|
echo "{}" > public/build/admin/manifest.json
|
|
echo "{}" > public/build/shop/manifest.json
|
|
echo "{}" > public/build/app/admin/manifest.json
|
|
echo "{}" > public/build/app/shop/manifest.json
|
|
|
|
- name: Build application
|
|
uses: SyliusLabs/BuildTestAppAction@v4
|
|
with:
|
|
build_type: "sylius"
|
|
cache_key: "${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}"
|
|
cache_restore_key: "${{ github.run_id }}-${{ runner.os }}-${{ hashFiles('composer.json') }}-symfony-${{ matrix.symfony }}"
|
|
e2e: "yes"
|
|
database: "mysql:${{ matrix.mysql }}"
|
|
php_version: ${{ matrix.php }}
|
|
symfony_version: ${{ matrix.symfony }}
|
|
node_version: ${{ env.NODE_VERSION }}
|
|
|
|
- name: Run UI Behat
|
|
run: |
|
|
$BEHAT_BASE_CMD --tags="~@javascript&&~@mink:chromedriver&&~@todo&&~@cli" --suite-tags="@hybrid,@ui" || \
|
|
$BEHAT_RERUN_CMD --tags="~@javascript&&~@mink:chromedriver&&~@todo&&~@cli" --suite-tags="@hybrid,@ui"
|
|
|
|
- name: Upload logs
|
|
uses: actions/upload-artifact@v4
|
|
if: failure()
|
|
with:
|
|
name: "Logs (UI, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}) - ${{ github.run_id }}-${{ github.run_number }}"
|
|
path: |
|
|
etc/build/
|
|
var/log
|
|
if-no-files-found: ignore
|
|
overwrite: true
|