ci: retire cross-version test jobs (openai + langchain)#438
Open
jennsun wants to merge 1 commit into
Open
Conversation
Both jobs ran current CI against the frozen `integrations/openai` / `integrations/langchain` source from historical tags (databricks-ai- v0.2.0 through v0.5.0). They worked while PyPI dep evolution was backward-compatible. That contract broke with the databricks-vectorsearch → databricks-ai- search rename. The frozen historical sources import VectorSearchIndex from `databricks.vector_search.client` (the path that was removed in the rename), and there's no PR to HEAD that can update that frozen source. The matrix is permanently red regardless of what HEAD does. Per Ann: "we can restart them from the version we are deploying." Remove both jobs now; once we ship a release containing the ai-search migration (#437), the cross-version matrix can be re-introduced with that release as the new stable baseline. The bridge's own unit tests + integration tests still cover regression risk. This removes a non-Required CI signal that's now noise rather than information.
ed9bb08 to
4938633
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes the
langchain_cross_version_testandopenai_cross_version_testjobs from.github/workflows/main.yml. Both jobs are permanently red afterdatabricks-vectorsearch>=0.74shipped (with the rename todatabricks-ai-searchand the removal of theVectorSearchIndexre-export fromdatabricks.vector_search.client).Targeted at unblocking the next release.
Background
The two retired jobs check out historical bridge tags (
databricks-ai-v0.2.0throughv0.5.0), copy that tag'sintegrations/openaiorintegrations/langchainsource over HEAD, and run a small smoke test against current PyPI. The implicit contract: "PyPI deps stay backward-compatible, so old bridge sources keep importing."That contract broke when
databricks-vectorsearch>=0.74removed theVectorSearchIndexre-export fromdatabricks.vector_search.client. Every historical bridge tag hard-codes:That import now fails on the version of vectorsearch that the matrix install pulls. The frozen tag sources can't be patched — they're sealed in the wheel. No PR to HEAD can turn the matrix green again.
We saw this exact failure on:
What this changes
langchain_cross_version_testjob (lines 109–154 on main).openai_cross_version_testjob (lines 201–241 on main).YAML validity confirmed locally via
yaml.safe_load. Top-level jobs after the edit:core_test,core_test_with_extras,langchain_test,langchain_test_with_extras,openai_test,openai_test_with_extras,llamaindex_test,mcp_test,dspy_test. None of the removed jobs were marked Required.Plan going forward
Per Ann: "we can restart them from the version we are deploying." Once a release containing the ai-search migration (#437 merged as d3a4f93) ships, we can re-introduce a cross-version matrix using that release as the new stable baseline.
The bridge's own unit tests + integration tests still cover regression risk for HEAD. This removes a non-Required CI signal that has become noise rather than information.
Test plan
cross_version_test(grep clean).