Run regression for IBX-9949 #6679
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 7.4/Node 18/PostgreSQL 14.15/Varnish/Redis/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-postgresql.yml:doc/docker/varnish.yml:doc/docker/redis.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:7.4-node18" | |
timeout: 120 | |
secrets: | |
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }} | |
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
TRAVIS_GITHUB_TOKEN: ${{ secrets.TRAVIS_GITHUB_TOKEN }} | |
AUTOMATION_CLIENT_ID: ${{ secrets.AUTOMATION_CLIENT_ID }} | |
AUTOMATION_CLIENT_INSTALLATION: ${{ secrets.AUTOMATION_CLIENT_INSTALLATION }} | |
AUTOMATION_CLIENT_SECRET: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
regression-commerce-setup2: | |
name: "PHP 8.0/Node 20/MariaDB 10.11/Compatibility layer/Elastic" | |
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-mariadb.yml:doc/docker/elastic.yml:doc/docker/selenium.yml" | |
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }} | |
use-compatibility-layer: true | |
job-count: 4 | |
multirepository: true | |
php-image: "ghcr.io/ibexa/docker/php:8.0-node20" | |
timeout: 120 | |
secrets: | |
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }} | |
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
TRAVIS_GITHUB_TOKEN: ${{ secrets.TRAVIS_GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
regression-commerce-setup3: | |
name: "PHP 8.3/Node 22/MySQL 8.4/Multirepository/Solr 8" | |
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/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: | |
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }} | |
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
TRAVIS_GITHUB_TOKEN: ${{ secrets.TRAVIS_GITHUB_TOKEN }} | |
AUTOMATION_CLIENT_ID: ${{ secrets.AUTOMATION_CLIENT_ID }} | |
AUTOMATION_CLIENT_INSTALLATION: ${{ secrets.AUTOMATION_CLIENT_INSTALLATION }} | |
AUTOMATION_CLIENT_SECRET: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |