|
62 | 62 | - job-name: Up to date versions - Special case - Symfony 5.4 |
63 | 63 | php-version: '${{ inputs.php-max-version }}' |
64 | 64 | symfony-version: '5.4' |
65 | | - - job-name: Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config |
66 | | - php-version: '${{ inputs.php-max-version }}' |
67 | | - symfony-version: '${{ inputs.symfony-min-version }}' |
68 | 65 | ## Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
69 | 66 | pkg-extra-constraints: behat/gherkin:~4.12.0 |
70 | 67 | - job-name: Bare minimum # => Lowest versions allowed by composer config |
|
76 | 73 | - job-name: Late migration - Php # => Highest symfony version with lowest php version allowed by composer config |
77 | 74 | php-version: '${{ inputs.php-min-version }}' |
78 | 75 | symfony-version: '${{ inputs.symfony-max-version }}' |
| 76 | + - job-name: Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config |
| 77 | + php-version: '${{ inputs.php-max-version }}' |
| 78 | + symfony-version: '${{ inputs.symfony-min-version }}' |
| 79 | + # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
| 80 | + pkg-extra-constraints: behat/gherkin:~4.12.0 |
79 | 81 | steps: |
80 | 82 | - name: Check out code |
81 | 83 | uses: actions/checkout@v4 |
@@ -228,15 +230,23 @@ jobs: |
228 | 230 | - job-name: PHP Nightly - With highest supported symfony versions |
229 | 231 | php-version: ${{ inputs.php-next-version }} |
230 | 232 | symfony-version: ${{ inputs.symfony-max-version }} |
| 233 | + # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
| 234 | + pkg-extra-constraints: behat/gherkin:~4.12.0 |
231 | 235 | - job-name: PHP Nightly - With lowest supported symfony versions |
232 | 236 | php-version: ${{ inputs.php-next-version }} |
233 | 237 | symfony-version: ${{ inputs.symfony-min-version }} |
| 238 | + # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
| 239 | + pkg-extra-constraints: behat/gherkin:~4.12.0 |
234 | 240 | - job-name: Symfony Nightly - With highest supported php version |
235 | 241 | php-version: ${{ inputs.php-max-version }} |
236 | 242 | symfony-version: ${{ inputs.symfony-next-version }} |
| 243 | + # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
| 244 | + pkg-extra-constraints: behat/gherkin:~4.12.0 |
237 | 245 | - job-name: Symfony Nightly - With lowest supported php version |
238 | 246 | php-version: ${{ inputs.php-min-version > 8.1 && inputs.php-min-version || '8.1' }} # Fix - Sf 6.3 (current next) require php 8.1 minimum ! |
239 | 247 | symfony-version: ${{ inputs.symfony-next-version }} |
| 248 | + # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317) |
| 249 | + pkg-extra-constraints: behat/gherkin:~4.12.0 |
240 | 250 |
|
241 | 251 | steps: |
242 | 252 | - name: Check out code |
|
0 commit comments