Run regression for IBX-11818 #8478
Workflow file for this run
This file contains hidden or 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: Browser tests | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| send-success-notification: | |
| description: 'Send a notification when the tests pass' | |
| required: false | |
| type: boolean | |
| default: false | |
| project-version: | |
| description: 'Fill only when the tests should run on a stable release' | |
| required: false | |
| type: string | |
| default: '' | |
| push: | |
| branches: | |
| - master | |
| - "[0-9]+.[0-9]+" | |
| pull_request: ~ | |
| jobs: | |
| regression-commerce-setup1: | |
| name: "PHP 8.3/Node 22/PostgreSQL 18.0/Varnish/Redis 7.2/Multirepository" | |
| uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main | |
| with: | |
| project-edition: "commerce" | |
| project-version: ${{ github.event.inputs.project-version }} | |
| test-suite: "--profile=regression --suite=commerce" | |
| test-setup-phase-1: "--profile=regression --suite=setup-commerce --tags=~@part2 --mode=standard" | |
| test-setup-phase-2: "--profile=regression --suite=setup-commerce --tags=@part2 --mode=standard" | |
| setup: "doc/docker/base-dev.yml:doc/docker/db-postgresql18.yml:doc/docker/varnish.yml:doc/docker/redis7.2.yml:doc/docker/selenium.yml" | |
| send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }} | |
| job-count: 4 | |
| multirepository: true | |
| php-image: "ghcr.io/ibexa/docker/php:8.3-node22" | |
| timeout: 120 | |
| secrets: inherit | |
| regression-commerce-setup2: | |
| name: "PHP 8.4/Node 22/MariaDB 11.4/Elastic 8/Valkey latest" | |
| uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main | |
| with: | |
| project-edition: "commerce" | |
| project-version: ${{ github.event.inputs.project-version }} | |
| test-suite: "--profile=regression --suite=commerce" | |
| test-setup-phase-1: "--profile=regression --suite=setup-commerce --tags=~@part2 --mode=standard" | |
| test-setup-phase-2: "--profile=regression --suite=setup-commerce --tags=@part2 --mode=standard" | |
| setup: "doc/docker/base-dev.yml:doc/docker/db-mariadb11.4.yml:doc/docker/elastic8.yml:doc/docker/valkey-latest.yml:doc/docker/selenium.yml" | |
| send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }} | |
| job-count: 4 | |
| multirepository: true | |
| php-image: "ghcr.io/ibexa/docker/php:8.4-node22" | |
| timeout: 120 | |
| secrets: inherit | |
| regression-commerce-setup3: | |
| name: "PHP 8.4/Node 22/MySQL 8.4/Multirepository/Solr 8/Redis latest" | |
| uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main | |
| with: | |
| project-edition: "commerce" | |
| project-version: ${{ github.event.inputs.project-version }} | |
| test-suite: "--profile=regression --suite=commerce" | |
| test-setup-phase-1: "--profile=regression --suite=setup-commerce --tags=~@part2 --mode=standard" | |
| test-setup-phase-2: "--profile=regression --suite=setup-commerce --tags=@part2 --mode=standard" | |
| setup: "doc/docker/base-dev.yml:doc/docker/db-mysql8.4.yml:doc/docker/solr8.yml:doc/docker/redis-latest.yml:doc/docker/selenium.yml" | |
| send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }} | |
| job-count: 4 | |
| multirepository: true | |
| php-image: "ghcr.io/ibexa/docker/php:8.4-node22" | |
| timeout: 120 | |
| secrets: inherit | |
| admin-ui-connector-quable: | |
| name: "Connector-quable tests/PHP 8.4/Node 22/PostgreSQL 18.0" | |
| uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main | |
| with: | |
| project-edition: "commerce" | |
| project-version: ${{ github.event.inputs.project-version }} | |
| setup: "doc/docker/base-dev.yml:doc/docker/db-postgresql18.yml:doc/docker/selenium.yml" | |
| install-connector-quable: true | |
| test-suite: '--profile=browser --suite=admin-ui-full --tags=@IbexaCommerce' | |
| test-setup-phase-1: '--profile=setup --suite=personas --mode=standard' | |
| test-setup-phase-2: '--profile=setup --suite=content-translation --mode=standard' | |
| send-success-notification: false | |
| php-image: "ghcr.io/ibexa/docker/php:8.4-node22" | |
| secrets: inherit |