Skip to content

Commit c20d1fd

Browse files
authored
chore(ci): use apache archive for cassandra download (#98)
* chore(ci): use apache archive for cassandra download dlcdn is only for the latest versions, we were using 5.0.6 which was removed when 5.0.7 was released. In this change we use archive.apache.org which has all the versions and we increment to 5.0.7 while we're at it. * fixup! chore(ci): use apache archive for cassandra download
1 parent c0aa6c8 commit c20d1fd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

scenarios/test_caching_subsystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
)
3030
from scenarios.synapse import clone_and_build, upload_file
3131

32-
CASSANDRA_VERSION = "5.0.6"
32+
CASSANDRA_VERSION = "5.0.7"
3333
PYTHON_VERSION = "3.11.10"
3434
PYENV_ROOT = Path.home() / ".pyenv"
3535
PYTHON_DIR = PYENV_ROOT / "versions" / PYTHON_VERSION

scripts/setup-scenarios-prerequisites.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ info() { printf "${BLUE}ℹ${NC} %s\n" "$1"; }
2727
# ── Constants ────────────────────────────────────────────────
2828
FOUNDRY_VERSION="v1.6.0-rc1"
2929
PYENV_VERSION="v2.5.3"
30-
CASSANDRA_VERSION="5.0.6"
30+
CASSANDRA_VERSION="5.0.7"
3131
PYTHON_VERSION="3.11.10"
3232
PYENV_ROOT="${PYENV_ROOT:-$HOME/.pyenv}"
3333
PYTHON_BIN="${PYENV_ROOT}/versions/${PYTHON_VERSION}/bin/python3"
34-
CASSANDRA_URL="https://dlcdn.apache.org/cassandra/${CASSANDRA_VERSION}/apache-cassandra-${CASSANDRA_VERSION}-bin.tar.gz"
34+
CASSANDRA_URL="https://archive.apache.org/dist/cassandra/${CASSANDRA_VERSION}/apache-cassandra-${CASSANDRA_VERSION}-bin.tar.gz"
3535
CASSANDRA_DIR="$HOME/.foc-devnet/artifacts/cassandra"
3636
FOUNDRY_DIR="$HOME/.foc-devnet/artifacts/foundry/bin"
3737
CASSANDRA_HOME="${CASSANDRA_DIR}/apache-cassandra-${CASSANDRA_VERSION}"

0 commit comments

Comments
 (0)