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

CC-33768: Added fixes for the "Robot Regression UI E2E" #461

Merged
merged 1 commit into from
Jun 5, 2024
Merged
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
9 changes: 3 additions & 6 deletions .github/workflows/robot-ui-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
docker-alpine-php-8-2-mariadb-robot-ui-group-one:
if: >
(github.event_name == 'pull_request' && github.event.label.name == 'robot-regression-ui-e2e') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'robot-regression-ui-e2e')) ||
(github.event_name == 'push' && github.ref == 'refs/heads/master')
name: "Docker / Alpine / PHP 8.2 / MariaDB / Robot / UI / Group One"
runs-on: ubuntu-22.04
Expand All @@ -40,7 +40,6 @@ jobs:

- name: Install packages
run: |
sudo apt install awscli -q
python3 -m pip install --upgrade pip
python3 -m pip install -U robotframework
python3 -m pip install -U robotframework-requests
Expand Down Expand Up @@ -97,7 +96,7 @@ jobs:

docker-alpine-php-8-2-mariadb-robot-ui-group-two:
if: >
(github.event_name == 'pull_request' && github.event.label.name == 'robot-regression-ui-e2e') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'robot-regression-ui-e2e')) ||
(github.event_name == 'push' && github.ref == 'refs/heads/master')
name: "Docker / Alpine / PHP 8.2 / MariaDB / Robot / UI /Group Two"
runs-on: ubuntu-22.04
Expand All @@ -114,7 +113,6 @@ jobs:

- name: Install packages
run: |
sudo apt install awscli -q
python3 -m pip install --upgrade pip
python3 -m pip install -U robotframework
python3 -m pip install -U robotframework-requests
Expand Down Expand Up @@ -171,7 +169,7 @@ jobs:

docker-alpine-php-8-2-mariadb-robot-ui-group-three:
if: >
(github.event_name == 'pull_request' && github.event.label.name == 'robot-regression-ui-e2e') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'robot-regression-ui-e2e')) ||
(github.event_name == 'push' && github.ref == 'refs/heads/master')
name: "Docker / Alpine / PHP 8.2 / MariaDB / Robot / UI / Group Three"
runs-on: ubuntu-22.04
Expand All @@ -188,7 +186,6 @@ jobs:

- name: Install packages
run: |
sudo apt install awscli -q
python3 -m pip install --upgrade pip
python3 -m pip install -U robotframework
python3 -m pip install -U robotframework-requests
Expand Down
Loading