Skip to content

Commit

Permalink
Merge branch '4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mnocon committed Jul 20, 2022
2 parents 161bc6b + 12620b9 commit 91f2fc0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/browser-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Browser tests
on:
workflow_dispatch: ~
workflow_dispatch:
inputs:
send-success-notification:
description: 'Send a notification when the tests pass'
required: false
type: boolean
default: true
push:
branches:
- master
Expand All @@ -18,6 +24,7 @@ jobs:
test-setup-phase-1: "--profile=regression --suite=setup-experience --tags=~@part2 --mode=standard"
test-setup-phase-2: "--profile=regression --suite=setup-experience --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: 3
multirepository: true
timeout: 120
Expand All @@ -37,6 +44,7 @@ jobs:
test-setup-phase-1: "--profile=regression --suite=setup-experience --tags=~@part2 --mode=standard"
test-setup-phase-2: "--profile=regression --suite=setup-experience --tags=@part2 --mode=standard"
setup: "doc/docker/base-dev.yml:doc/docker/selenium.yml"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
use-compatibility-layer: true
job-count: 3
timeout: 120
Expand All @@ -55,6 +63,7 @@ jobs:
test-suite: "--profile=browser --suite=page-builder"
test-setup-phase-1: "--mode=standard --profile=setup --suite=MapHost"
setup: "doc/docker/base-dev.yml:doc/docker/multihost.yml:doc/docker/selenium.yml"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand All @@ -68,6 +77,7 @@ jobs:
project-version: "4.2.x-dev"
test-suite: "--profile=browser --suite=page-builder"
test-setup-phase-1: "--mode=standard --profile=setup --suite=MapURI"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand All @@ -81,6 +91,7 @@ jobs:
project-version: "4.2.x-dev"
test-suite: "--profile=browser --suite=page-builder"
test-setup-phase-1: "--mode=standard --profile=setup --suite=URIElement"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand All @@ -95,6 +106,7 @@ jobs:
test-suite: "--profile=browser --suite=page-builder"
test-setup-phase-1: "--mode=standard --profile=setup --suite=CompoundMapURIMapHost"
setup: "doc/docker/base-dev.yml:doc/docker/multihost.yml:doc/docker/selenium.yml"
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
secrets:
SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }}
SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }}
Expand Down

0 comments on commit 91f2fc0

Please sign in to comment.