-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (68 loc) · 3.53 KB
/
browser-tests.yml
File metadata and controls
69 lines (68 loc) · 3.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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