Skip to content

Commit

Permalink
Sandbox: Download Linux variant of CrateDB from os/arch-specific URL
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 6, 2023
1 parent 481aff4 commit 8795b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if sys.platform != "linux":
raise SkipTest("Integration tests only supported on Linux")

crate_version = os.getenv("CRATEDB_VERSION", "5.2.2")
crate_version = os.getenv("CRATEDB_VERSION", "5.4.5")
crate_http_port = 44209
crate_transport_port = 44309
crate_settings = {
Expand All @@ -40,7 +40,7 @@
'transport.tcp.port': crate_transport_port
}
node = CrateLayer.from_uri(
f'https://cdn.crate.io/downloads/releases/crate-{crate_version}.tar.gz',
f'https://cdn.crate.io/downloads/releases/cratedb/x64_linux/crate-{crate_version}.tar.gz',
'crate',
settings=crate_settings
)
Expand Down

0 comments on commit 8795b39

Please sign in to comment.