Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/actions/integration-tests/run-ci-stage1
Original file line number Diff line number Diff line change
Expand Up @@ -784,9 +784,16 @@ run_cmd "crucible ls --type tags"

run_cmd "crucible opensearch repair"

run_cmd "crucible opensearch init"
case "${CI_RELEASE}" in
"2024.4"|"2025.1"|"2025.2"|"2025.3")
run_cmd "crucible opensearch init"

run_cmd "crucible opensearch rebuild"
run_cmd "crucible opensearch rebuild"
;;
*)
echo "Skipping 'crucible opensearch init/rebuild' since they are not supported on the ${CI_RELEASE} release"
;;
esac

for scenario in $(echo "${CI_SCENARIOS}" | sed -e "s/,/ /g"); do
if [ "${scenario}" == "multi" ]; then
Expand Down
Loading