From 23febbd59e65320d87b35038e25390091dcd1986 Mon Sep 17 00:00:00 2001 From: Christian Fasching Date: Wed, 13 Dec 2023 11:56:38 +0100 Subject: [PATCH] added new bundles to tests (#27) * added new bundles to tests * fixed bundles --- .github/files/bundles.php | 2 ++ .github/scripts/01-setup-environment.sh | 4 +++- .github/scripts/02-install-pimcore.sh | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/files/bundles.php b/.github/files/bundles.php index 9e2745f..2eeb1fa 100644 --- a/.github/files/bundles.php +++ b/.github/files/bundles.php @@ -51,6 +51,8 @@ \Pimcore\Bundle\BackendPowerToolsBundle\PimcoreBackendPowerToolsBundle::class => ['all' => true], \Pimcore\Bundle\DataHubWebhooksBundle\PimcoreDataHubWebhooksBundle::class => ['all' => true], \Pimcore\Bundle\DataQualityManagementBundle\PimcoreDataQualityManagementBundle::class => ['all' => true], + \Pimcore\Bundle\WorkflowAutomationIntegrationBundle\PimcoreWorkflowAutomationIntegrationBundle::class => ['all' => true], + \Pimcore\Bundle\AdminUiClassicLightThemeBundle\PimcoreAdminUiClassicLightThemeBundle::class => ['all' => true], ]; diff --git a/.github/scripts/01-setup-environment.sh b/.github/scripts/01-setup-environment.sh index f1b7ea8..7f6453d 100755 --- a/.github/scripts/01-setup-environment.sh +++ b/.github/scripts/01-setup-environment.sh @@ -85,7 +85,9 @@ docker compose exec -T -- php composer require -W \ pimcore/newsletter-bundle \ pimcore/data-quality-management-bundle \ pimcore/data-hub-webhooks \ - pimcore/backend-power-tools-bundle + pimcore/backend-power-tools-bundle \ + pimcore/admin-ui-classic-light-theme-bundle \ + pimcore/workflow-automation-integration-bundle docker compose exec -T -- php composer update diff --git a/.github/scripts/02-install-pimcore.sh b/.github/scripts/02-install-pimcore.sh index 29699c7..3c28f15 100755 --- a/.github/scripts/02-install-pimcore.sh +++ b/.github/scripts/02-install-pimcore.sh @@ -67,6 +67,7 @@ docker compose exec -T php bin/console pimcore:bundle:install PimcorePerspective docker compose exec -T php bin/console pimcore:bundle:install PimcoreDataQualityManagementBundle docker compose exec -T php bin/console pimcore:bundle:install PimcoreDataHubWebhooksBundle docker compose exec -T php bin/console pimcore:bundle:install PimcoreBackendPowerToolsBundle +docker compose exec -T php bin/console pimcore:bundle:install PimcoreWorkflowAutomationIntegrationBundle cp ../../platform-version/.github/files/config-config.yaml ./config/local