Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-8544: Run on RHEL 9 #1078

Draft
wants to merge 4 commits into
base: 4.6
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions .github/workflows/browser-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,20 @@ on:
jobs:
regression-commerce-setup1:
name: "PHP 7.4/Node 18/PostgreSQL/Varnish/Redis/Multirepository"
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@ibx-8544-rhel
with:
ci-scripts-branch: ibx-8544-rhel
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
job-count: 1
multirepository: true
php-image: "ghcr.io/ibexa/docker/php:7.4-node18"
timeout: 120
timeout: 300
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand All @@ -44,8 +45,9 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
regression-commerce-setup2:
name: "PHP 8.0/Node 18/MySQL/Compatibility layer/Elastic"
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@ibx-8544-rhel
with:
ci-scripts-branch: ibx-8544-rhel
project-edition: "commerce"
project-version: ${{ github.event.inputs.project-version }}
test-suite: "--profile=regression --suite=commerce"
Expand All @@ -54,30 +56,31 @@ jobs:
setup: "doc/docker/base-dev.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
job-count: 1
multirepository: true
php-image: "ghcr.io/ibexa/docker/php:8.0-node18"
timeout: 120
timeout: 300
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 18/MySQL/Multirepository/Solr"
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@main
uses: ibexa/gh-workflows/.github/workflows/browser-tests.yml@ibx-8544-rhel
with:
ci-scripts-branch: ibx-8544-rhel
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/solr.yml:doc/docker/selenium.yml"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
job-count: 4
job-count: 1
multirepository: true
php-image: "ghcr.io/ibexa/docker/php:8.3-node18"
timeout: 120
timeout: 300
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand Down
Loading