Skip to content

Commit 021fd81

Browse files
committed
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.
1 parent c0aa6c8 commit 021fd81

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)