fix: Remove remote docling VLM component (#10547)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Adam Aghili <Adam.Aghili@ibm.com>
This commit is contained in:
Eric Hare
2025-11-10 09:56:49 -08:00
committed by GitHub
parent 403b939c9c
commit bfbaeab63b
6 changed files with 16 additions and 306 deletions

View File

@ -89,15 +89,10 @@ jobs:
arch: amd64
runner: ubuntu-latest
python-version: "3.12"
# macOS AMD64
- os: macos
arch: amd64
runner: macos-13
python-version: "3.10"
- os: macos
arch: amd64
runner: macos-13
python-version: "3.12"
# macOS-13 Brown out
# TODO add macos-15-intel
# https://github.com/actions/runner-images/issues/13046
# https://github.com/godot-rust/gdext/pull/1402
# macOS ARM64 (Apple Silicon)
- os: macos
arch: arm64
@ -392,10 +387,8 @@ jobs:
arch: amd64
runner: ubuntu-latest
python-version: "3.13"
- os: macos
arch: amd64
runner: macos-13
python-version: "3.13"
# macOS-13 Brown out
# TODO add macos-15-intel
- os: macos
arch: arm64
runner: macos-latest
@ -712,4 +705,4 @@ jobs:
else
echo "❌ Critical platform tests were skipped unexpectedly"
exit 1
fi
fi

View File

@ -22,6 +22,11 @@ on:
required: false
type: boolean
default: false
skip_slack:
description: "Skip slack message on failure. Only do this for testing purposes."
required: false
type: boolean
default: false
push_to_registry:
description: "Whether to push images to registries. Set to false for testing builds without publishing."
required: false
@ -229,7 +234,7 @@ jobs:
slack-notification:
name: Send Slack Notification
needs: [frontend-tests, backend-unit-tests, release-nightly-build]
if: ${{ github.repository == 'langflow-ai/langflow' && always() && (needs.release-nightly-build.result == 'failure' || needs.frontend-tests.result == 'failure' || needs.backend-unit-tests.result == 'failure' || needs.release-nightly-build.result == 'success') }}
if: ${{ github.repository == 'langflow-ai/langflow' && !inputs.skip_slack && always() && (needs.release-nightly-build.result == 'failure' || needs.frontend-tests.result == 'failure' || needs.backend-unit-tests.result == 'failure' || needs.release-nightly-build.result == 'success') }}
runs-on: ubuntu-latest
steps:
- name: Send failure notification to Slack