mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-22 07:42:16 +00:00
This series adds a shared helper for resolving, downloading, unpacking, and installing Scylla relocatable packages for test.py. The first patch introduces `version_fetch_utils`, which can resolve public Scylla artifacts from the downloads bucket by version, architecture, package variant, or direct URL. It also centralizes the local cache/install flow using retry handling, marker files, and file locking so repeated or concurrent test runs can safely reuse an existing installation. The second patch wires this helper into the existing Scylla executable setup paths. This removes the hard-coded 2025.1 package URL and replaces the local download/unpack/install logic in `scylla_cluster.py` with the shared resolver. It also makes `--exe-url` use the same cached installer path. Together, these changes make upgrade-test executable selection less brittle, avoid duplicated install logic, and provide a reusable foundation for fetching other Scylla versions in test.py. Closes scylladb/scylladb#29855 * github.com:scylladb/scylladb: test/pylib: use version fetcher for Scylla executable setup test/pylib: add cached Scylla package installer