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

[TEST] modify chromium version #484

Merged
merged 4 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions .github/workflows/codeception.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ jobs:
template_tag: v11.0.0
steps:
- uses: nanasess/setup-chromedriver@v2
with:
chromedriver-version: '127.0.6533.119'
- uses: actions/checkout@v4
with:
path: lib/test-bundle
Expand Down Expand Up @@ -102,8 +100,8 @@ jobs:
- name: Setup Chromium
run: |
export DISPLAY=:99
chromedriver --url-base=/wd/hub &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
chromedriver --url-base=/wd/hub --port=9515 &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &

- name: Start Symfony Server
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/php-stan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ jobs:
run: |
bin/console assets:install public --relative --symlink

- name: Validate Container
run: |
bin/console lint:container

- name: Php Stan
run: |
bin/console cache:warmup --env=test
Expand Down
3 changes: 3 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Upgrade Notes

## 5.1.3
- **[BUGFIX]** Fix DoubleOptInType Service Definition [@dpfaffenbauer](https://github.com/dachcom-digital/pimcore-formbuilder/pull/483)

## 5.1.2
- **[IMPROVEMENT]** [File Upload] Add Deeplink Option to file upload field [#475](https://github.com/dachcom-digital/pimcore-formbuilder/issues/475)
- **[BUGFIX]** [Double-Opt-In] Remove unique index, allow admin to define unique data behavior [#477](https://github.com/dachcom-digital/pimcore-formbuilder/issues/477)
Expand Down
1 change: 1 addition & 0 deletions tests/_envs/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ modules:
port: 9515
restart: true
wait: 1
window_size: 1280x1024
capabilities:
'goog:chromeOptions':
args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']
Expand Down
Loading