Export the agent e2e suite as a release bundle for downstream repos#134
Open
ling-senpeng13 wants to merge 1 commit into
Open
Export the agent e2e suite as a release bundle for downstream repos#134ling-senpeng13 wants to merge 1 commit into
ling-senpeng13 wants to merge 1 commit into
Conversation
…eam repos Package the agent e2e suite (e2e/) into a self-contained, version-stamped tarball (conductor-ai-e2e-typescript-<version>.tar.gz) attached to GitHub releases, so downstream repos (e.g. orkes-io/orkes-conductor) can pin the suite to the exact javascript-sdk release they run against. Replaces the agentspan-sdk-e2e-typescript bundles formerly cut from agentspan-ai/agentspan. Mirrors conductor-oss/java-sdk's conductor-ai-e2e/release/ export. - scripts/package-e2e-bundle.sh: stages e2e/ verbatim (suites already import by package name) + standalone package.json pinning @io-orkes/conductor-javascript@<version> from npm + jest config with NO src aliases + run.sh + README - scripts/test-package-e2e-bundle.sh: static validator (file parity, version pin, no src aliases, junit reporter; no network) - .github/workflows/release-agent-e2e-bundle.yml: package + validate + sha256 + upload on release, same triggers as release.yml Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests.
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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
Packages the agent e2e suite (
e2e/) into a self-contained, version-stamped tarball —conductor-ai-e2e-typescript-<version>.tar.gz— attached to every GitHub release, so downstream repos (e.g. orkes-io/orkes-conductor) can pin the e2e suite to the exact javascript-sdk release they run against. Replaces theagentspan-sdk-e2e-typescript-*bundles formerly cut from agentspan-ai/agentspan (whose pinnedconductor-agent-sdknpm package was never published, so they couldn't run). Mirrors conductor-oss/java-sdk#128.scripts/package-e2e-bundle.sh— stagese2e/verbatim (suites already import by package name, so no rewriting) + a standalonepackage.jsonpinning@io-orkes/conductor-javascript@<version>from npm + a jest config with no src aliases (the published package must resolve) +run.sh+ README.isolatedModules: truekeeps ts-jest transpile-only, matching the repo root tsconfig — suites dynamically import optional provider SDKs inside try/catch and skip when absent.scripts/test-package-e2e-bundle.sh— static validator (file parity, version pin, no src aliases, junit reporter wired; no network)..github/workflows/release-agent-e2e-bundle.yml— packages, validates, generates sha256 sidecars, uploads to the release; same triggers asrelease.yml, plusworkflow_dispatchto attach bundles to existing releases (first target:v4.0.0-rc1).Validation
@io-orkes/conductor-javascript@4.0.0-rc1from npm and resolves the/agentssubpath export3.32.0-rc.8(real LLM calls): 25 suites — 23 passed, 2 skipped (optional-service suites skip gracefully), 0 failed after addingzod-to-json-schemato the bundle devDeps (the SDK'stool()Zod→JSON-Schema fallback needs it with zod v3)