Skip to content

Commit

Permalink
restrict test to Sylius 1.14 + move sonata block bundle for only < v2
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcr committed Dec 5, 2024
1 parent 96fac7e commit 20002e2
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
strategy:
fail-fast: false
matrix:
# php: ["8.2"]
php: ["8.4", "8.3", "8.2", "8.1"]
# symfony: ["^6.4"]
symfony: ["^5.4", "^6.4", "^7.0"]
# sylius: ["~1.13.0"]
sylius: ["~1.11.0", "~1.12.0", "~1.13.0", "~1.14.0", "~2.0.0"]
php: ["8.2"]
# php: ["8.4", "8.3", "8.2", "8.1"]
symfony: ["^6.4"]
# symfony: ["^5.4", "^6.4", "^7.0"]
sylius: ["~1.14.0"]
# sylius: ["~1.11.0", "~1.12.0", "~1.13.0", "~1.14.0", "~2.0.0"]
# node: ["12.x"]
mariadb: ["10.11"]

Expand Down
1 change: 0 additions & 1 deletion tests/Application/config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
Sylius\Bundle\CoreBundle\SyliusCoreBundle::class => ['all' => true],
Sylius\Bundle\ResourceBundle\SyliusResourceBundle::class => ['all' => true],
Sylius\Bundle\GridBundle\SyliusGridBundle::class => ['all' => true],
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle::class => ['all' => true],
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.10/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
SyliusLabs\Polyfill\Symfony\Security\Bundle\SyliusLabsPolyfillSymfonySecurityBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.11/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
SyliusLabs\Polyfill\Symfony\Security\Bundle\SyliusLabsPolyfillSymfonySecurityBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.12/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
Sylius\Calendar\SyliusCalendarBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.13/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.14/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
Expand Down
1 change: 1 addition & 0 deletions tests/Application/config/sylius/1.9/bundles.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

return [
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
SyliusLabs\Polyfill\Symfony\Security\Bundle\SyliusLabsPolyfillSymfonySecurityBundle::class => ['all' => true],
Expand Down

0 comments on commit 20002e2

Please sign in to comment.