@@ -60,22 +60,23 @@ jobs:
6060 - job-name : Up to date versions # => Highest versions allowed by composer config
6161 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
6262 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)
6464 pkg-extra-constraints : behat/gherkin:~4.12.0
6565 - job-name : Up to date versions - Special case - Symfony 5.4
6666 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
6767 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)
6969 # 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' || '' }}
7171 - job-name : Bare minimum # => Lowest versions allowed by composer config
7272 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
7373 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
7474 - job-name : Bare minimum - Special case - Symfony 5.4
7575 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
7676 symfony-version : ' 5.4'
7777 - 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 }}
7980 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
8081 - job-name : Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config
8182 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
@@ -225,9 +226,9 @@ jobs:
225226 needs : [ fetch-supported-versions, tests ]
226227 if : ${{ github.event_name == 'push' || ( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'with-nightly-tests') ) }}
227228 runs-on : ubuntu-latest
228- continue-on-error : true
229229 permissions :
230230 contents : read
231+ continue-on-error : true
231232 env :
232233 COMPOSER_IGNORE_PLATFORM_REQ : ' php+'
233234 strategy :
@@ -249,7 +250,7 @@ jobs:
249250 symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
250251 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
251252 # 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' || '' }}
253254 - job-name : Symfony - With lowest supported PHP version
254255 # Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
255256 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