Add SDK server scripts and update workflows#263
Merged
Conversation
Introduce reusable scripts to resolve/download/start the SDK test server and refactor CI to use them. Adds scripts/resolve-latest-release-asset.py, scripts/download-release-server.sh and scripts/start-sdk-test-server.sh and wires these into the Dart and TypeScript GitHub Actions (also include the scripts in the workflow file triggers). Replace inline release-asset resolution and server extraction/bootstrapping with calls to the new scripts. Other notable changes: - Use a PID file and centralized server start logic in CI and scripts/test-typescript-sdk-release.sh. - Increase several Rust test timeouts (ntest::timeout from 15000 to 30000) to reduce flakiness under network-impaired tests. - Refactor PG client tests to start servers on ephemeral ports and add helper functions (start_server_with_executor_on_ephemeral_port, start_leader_redirect_servers) to remove duplicated port wiring. - Minor change to python workflow environment syntax (environment name mapping). - Add docs archived versions support in scripts/versions.py and update versions.json with docs/versioning archived entries. These changes centralize server lifecycle handling, reduce duplicated CI code, and improve test reliability.
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.
Introduce reusable scripts to resolve/download/start the SDK test server and refactor CI to use them. Adds scripts/resolve-latest-release-asset.py, scripts/download-release-server.sh and scripts/start-sdk-test-server.sh and wires these into the Dart and TypeScript GitHub Actions (also include the scripts in the workflow file triggers). Replace inline release-asset resolution and server extraction/bootstrapping with calls to the new scripts.
Other notable changes:
These changes centralize server lifecycle handling, reduce duplicated CI code, and improve test reliability.