@@ -60,22 +60,23 @@ jobs:
60
60
- job-name : Up to date versions # => Highest versions allowed by composer config
61
61
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
62
62
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
63
- # # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
63
+ # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
64
64
pkg-extra-constraints : behat/gherkin:~4.12.0
65
65
- job-name : Up to date versions - Special case - Symfony 5.4
66
66
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
67
67
symfony-version : ' 5.4'
68
- # # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
68
+ # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
69
69
# Fix - symfony/yaml - Avoid issue with Sf YAML 6.4+ and Framework bundle
70
- pkg-extra-constraints : behat/gherkin:~4.12.0 symfony/yaml:~6.4.0
70
+ pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs. symfony-max == '6.4' ) && 'symfony /yaml:~6.4.0' || '' }}
71
71
- job-name : Bare minimum # => Lowest versions allowed by composer config
72
72
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
73
73
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
74
74
- job-name : Bare minimum - Special case - Symfony 5.4
75
75
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
76
76
symfony-version : ' 5.4'
77
77
- job-name : Late migration - PHP # => Highest symfony version with lowest php version allowed by composer config
78
- php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }} # Fix - Sf 6.4 require php 8.1 minimum !
78
+ # Fix - Sf 6.4 require php 8.1 minimum !
79
+ php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '6.4' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
79
80
symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
80
81
- job-name : Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config
81
82
php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
@@ -225,9 +226,9 @@ jobs:
225
226
needs : [ fetch-supported-versions, tests ]
226
227
if : ${{ github.event_name == 'push' || ( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'with-nightly-tests') ) }}
227
228
runs-on : ubuntu-latest
228
- continue-on-error : true
229
229
permissions :
230
230
contents : read
231
+ continue-on-error : true
231
232
env :
232
233
COMPOSER_IGNORE_PLATFORM_REQ : ' php+'
233
234
strategy :
@@ -249,7 +250,7 @@ jobs:
249
250
symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
250
251
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
251
252
# Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
252
- pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
253
+ pkg-extra-constraints : behat/gherkin:~4.12.0 ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && 'symfony/framework-bundle:~7.0.0@dev' || '' }}
253
254
- job-name : Symfony - With lowest supported PHP version
254
255
# Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
255
256
php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
0 commit comments