ci: export SDK e2e suites as a release bundle for downstream reuse#294
Closed
ling-senpeng13 wants to merge 1 commit into
Closed
ci: export SDK e2e suites as a release bundle for downstream reuse#294ling-senpeng13 wants to merge 1 commit into
ling-senpeng13 wants to merge 1 commit into
Conversation
Adds the producer side of the agentspan -> orkes-conductor e2e contract.
orkes-conductor's agentspan-sdk-e2e.yaml already downloads
`agentspan-e2e-bundle.tar.gz` + `.manifest.txt` from our releases and runs
each SDK suite against its embedded server; this adds the workflow + script
that produce those assets.
- e2e/export-e2e-bundle.sh: assembles the bundle via `git archive` (tracked
files only, no build artifacts) into top-level `agentspan-e2e/` with
sdk/{java,python,typescript,csharp} + cli + e2e/TEST_SETUP.md, then writes
the tarball + a provenance manifest. Each SDK tree is self-contained
(gradlew / pyproject / package.json / sln+csproj / go.mod).
- .github/workflows/export-e2e-bundle.yml: on release [created] + manual
dispatch, builds the bundle and uploads both assets to the release. Sharing
the release tag with the conductor-agentspan lib lets orkes pin ONE tag for
both the lib and the matching e2e suites.
- .gitignore: ignore /dist/ (bundle output).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Adds the producer side of the agentspan → orkes-conductor e2e contract: a workflow + script that package the SDK e2e suites into a release bundle so downstream hosts (orkes-conductor) can run the exact same suites against their own server, pinned by release tag.
orkes-conductor's
agentspan-sdk-e2e.yamlalready consumes this: itgh release downloadsagentspan-e2e-bundle.tar.gz+agentspan-e2e-bundle.manifest.txtfrom this repo, extracts toagentspan-e2e/, and runs each SDK from$BUNDLE/sdk/<lang>(+ builds the CLI from$BUNDLE/cli). Only the producer was missing here.Changes
e2e/export-e2e-bundle.sh— assembles the bundle viagit archive(tracked files only → reproducible, nobuild//node_modules//.venv//obj/). Top-levelagentspan-e2e/containing self-containedsdk/{java,python,typescript,csharp}+cli/+e2e/TEST_SETUP.md, plus a provenance manifest (tag, commit, lib version, date). Runs locally:e2e/export-e2e-bundle.sh [OUT_DIR] [REF]..github/workflows/export-e2e-bundle.yml—on: release [created]+ manual dispatch; uploads both assets to the release. Same trigger asrelease-server-maven.yml(which publishesconductor-agentspan), so bundle and lib share the release tag → orkes pins one tag for both lib and tests..gitignore— ignore/dist/(bundle output).e2e/TEST_SETUP.mdalready existed and is included as-is.Verification
BUNDLE=/tmp/agentspan/agentspan-e2e; all 4 SDK trees self-contained (gradlew / pyproject+uv.lock / package.json+lock / sln+csproj→../../src/Conductor.AI/ go.mod); 26 Java suites; zero build-artifact leakage.agentspan-sdk-e2e.yamlexactly.Notes
export-java-e2e-conformanceis an orthogonal, unused approach — worth retiring.🤖 Generated with Claude Code