Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Nov 20, 2024
1 parent f9b6004 commit 0225293
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ jobs:
extensions: gd, sqlite, pdo_sqlite

# Disable Symfony deprecations helper for PHP 8.4+ until minor
# versions of Drupal 10 and 11 core fully support PHP 8.4+.
# versions of Drupal 10 and 11 fully support PHP 8.4.
# @see https://www.drupal.org/project/drupal/issues/1267246
- name: Update SYMFONY_DEPRECATIONS_HELPER for PHP 8.4+
run: echo "SYMFONY_DEPRECATIONS_HELPER=$([[ "${{ matrix.php-version }}" >= "8.4" ]] && echo 'disabled' || echo '')" >> $GITHUB_ENV
- name: Update SYMFONY_DEPRECATIONS_HELPER for PHP 8.4
run: if [ "${{ matrix.php-version }}" == "8.4" ]; then echo "SYMFONY_DEPRECATIONS_HELPER=disabled" >> "$GITHUB_ENV"; fi

- name: Assemble the codebase
run: .devtools/assemble.sh
Expand Down

0 comments on commit 0225293

Please sign in to comment.