Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/actions/docker-build-preview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,13 @@ runs:
fi

# Optional addon packages (copy if present)
cp addons/nuxeo-ai-image-quality-package/target/*package*.zip docker/ 2>/dev/null || echo "image-quality package not found"
cp addons/nuxeo-ai-aws-package/target/*package*.zip docker/ 2>/dev/null || echo "aws package not found"
cp addons/nuxeo-ai-gcp-package/target/*package*.zip docker/ 2>/dev/null || echo "gcp package not found"

cp addons/nuxeo-ai-content-intelligence-package/target/*package*.zip docker/ 2>/dev/null || echo "content-intelligence package not found"

Comment on lines 43 to +45
echo "Docker context contents:"
ls -al docker || true

- name: Build Nuxeo image
uses: nuxeo/gh-build-tools/.github/actions/nuxeo-docker-build@v0.8.0
uses: nuxeo/gh-build-tools/.github/actions/nuxeo-docker-build@v0.9.0
with:
base-image-tag: 2025
base-registry-username: ${{ inputs.docker-username }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrency:
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
MAVEN_OPTS: >-
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
-Daether.syncContext.named.time=600
Expand Down Expand Up @@ -222,7 +223,7 @@ jobs:
fi

- name: Build & Push Docker Preview Image
if: github.event_name == 'pull_request' && contains(join(github.event.pull_request.labels.*.name, ','), 'preview')
if: github.event_name == 'pull_request' && steps.build.outcome == 'success' && contains(join(github.event.pull_request.labels.*.name, ','), 'preview')
Comment on lines 225 to +226
uses: ./.github/actions/docker-build-preview
with:
version: ${{ env.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion addons/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://github.com/nuxeo/nuxeo-ai/blob/master/nuxeo-ai-core/src/main/java/org/nu
See [Custom enrichment services](https://github.com/nuxeo/nuxeo-ai#custom-enrichment-services).

To enrich documents in a nuxeo-stream the enrichment service needs to be registered as a Stream processor.
See [Enrichment stream processor](https://github.com/nuxeo/nuxeo-ai#enrichment-stream-processing).
See[Enrichment stream processor](https://github.com/nuxeo/nuxeo-ai#enrichment-stream-processing).

# License

Expand Down