From 8d6d05c71b80f2944a2a03ef4366d1dd441823b7 Mon Sep 17 00:00:00 2001 From: tomaszszopinski Date: Thu, 4 Dec 2025 09:26:28 +0100 Subject: [PATCH 1/2] IBX-10967:Added connector-anthropic to CI script --- bin/5.0.x-dev/prepare_project_edition.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/5.0.x-dev/prepare_project_edition.sh b/bin/5.0.x-dev/prepare_project_edition.sh index 910afd6..2e8af18 100755 --- a/bin/5.0.x-dev/prepare_project_edition.sh +++ b/bin/5.0.x-dev/prepare_project_edition.sh @@ -113,6 +113,11 @@ docker exec install_dependencies composer recipes:install ${DEPENDENCY_PACKAGE_N # Install Behat and Docker packages docker exec install_dependencies composer require ibexa/behat:$PROJECT_VERSION ibexa/docker:$PROJECT_VERSION --no-scripts --ansi --no-update +# Install opt-in packages +if [[ "$PROJECT_EDITION" != "oss" ]]; then + docker exec install_dependencies composer require ibexa/connector-anthropic:$PROJECT_VERSION --no-scripts --ansi --no-update +fi + # Add other dependencies if required if [ -f dependencies.json ]; then COUNT=$(cat dependencies.json | jq '.packages | length' ) From 6c183f2393541bb6c321d7d27d028b934f539014 Mon Sep 17 00:00:00 2001 From: tomaszszopinski Date: Fri, 5 Dec 2025 12:15:13 +0100 Subject: [PATCH 2/2] updated stable script --- bin/stable/prepare_project_edition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/stable/prepare_project_edition.sh b/bin/stable/prepare_project_edition.sh index 0405870..a51f908 100755 --- a/bin/stable/prepare_project_edition.sh +++ b/bin/stable/prepare_project_edition.sh @@ -51,7 +51,7 @@ elif [[ $PROJECT_VERSION == *"v4.6"* ]]; then if [[ "$PROJECT_EDITION" != "oss" ]]; then echo "> Installing opt-in packages" # ibexa/connector-qualifio is already being installed with the project - docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi + docker exec install_dependencies composer require ibexa/connector-ai:$PROJECT_VERSION ibexa/connector-openai:$PROJECT_VERSION ibexa/connector-anthropic:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi docker exec install_dependencies composer require ibexa/collaboration:$PROJECT_VERSION ibexa/share:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi docker exec install_dependencies composer require ibexa/fieldtype-richtext-rte:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi docker exec install_dependencies composer require ibexa/product-catalog-date-time-attribute:$PROJECT_VERSION --with-all-dependencies --no-scripts --ansi