Skip to content

Commit

Permalink
fix(ci): backwards compat test for 1.9 should use etcd (#16820)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel authored May 20, 2024
1 parent 6d523e5 commit 55db137
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/scripts/backwards-compat-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ VERSION="$1"
ENABLE_BUILD="$2"

echo "--- Setting up cluster config"
if version_le "$VERSION" "1.9.0"; then
if version_le "$VERSION" "1.8.9"; then
cat <<EOF > risedev-profiles.user.yml
full-without-monitoring:
steps:
Expand All @@ -53,6 +53,8 @@ full-without-monitoring:
- use: compactor
EOF
else
# For versions >= 1.9.0, the default config will default to sql backend,
# breaking backwards compat, so we must specify meta-backend: etcd
cat <<EOF > risedev-profiles.user.yml
full-without-monitoring:
steps:
Expand Down

0 comments on commit 55db137

Please sign in to comment.