Skip to content

Commit

Permalink
Avoid newest Xdebug (#5835)
Browse files Browse the repository at this point in the history
* Avoid newest Xdebug

* Use the tag

* Disable hightest temporarily
  • Loading branch information
weitzman authored Dec 10, 2023
1 parent 8d2a9e2 commit 6004108
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ defaults: &defaults
SYMFONY_DEPRECATIONS_HELPER: disabled
PHPUNIT_ARGS: ""
PHP_SENDMAIL_PATH: /dev/null
# https://drupal.slack.com/archives/CGKLP028K/p1702031434143329?thread_ts=1702024395.751479&cid=CGKLP028K
WODBY_TAG: 8.1-dev-4.40.9

requires: &requires
requires:
Expand All @@ -24,14 +26,14 @@ post_steps: &poststeps
executors:
mysql-stable:
docker:
- image: wodby/php:8.1
- image: wodby/php:$WODBY_TAG
environment:
- MYSQL_HOST=127.0.0.1
- UNISH_DB_URL=mysql://root:@127.0.0.1
- image: cimg/mysql:5.7.38
sqlite-stable:
docker:
- image: wodby/php:8.1
- image: wodby/php:$WODBY_TAG
environment:
- "UNISH_DB_URL=sqlite://:memory:"
sqlite-highest:
Expand All @@ -41,7 +43,7 @@ executors:
- "UNISH_DB_URL=sqlite://:memory:"
postgres-stable:
docker:
- image: wodby/php:8.1
- image: wodby/php:$WODBY_TAG
environment:
- UNISH_DB_URL=pgsql://unish:[email protected]
- image: wodby/postgres:14
Expand All @@ -59,7 +61,7 @@ jobs:
code_style:
<<: *defaults
docker:
- image: wodby/php:8.1
- image: wodby/php:$WODBY_TAG
steps:
- checkout
- run: cp .docker/zz-php.ini /usr/local/etc/php/conf.d/
Expand Down Expand Up @@ -140,7 +142,7 @@ workflows:
parameters:
dbms: [sqlite, mysql, postgres]
suite: [integration, functional]
release: [stable, highest]
release: [stable] # highest is temporarily disabled.
exclude:
# Only run highest test on sqlite. Excluding each suite is unfortnate but needed.
- release: highest
Expand Down

0 comments on commit 6004108

Please sign in to comment.