-
Notifications
You must be signed in to change notification settings - Fork 524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
smoke tests: Ignore version 9.0.0 #14176
Conversation
Omits running the smoke tests against 9.0.0-SNAPSHOT, since the it's still in its infancy and other components aren't working properly at the moment. Given how far out the release is and that it breaks the smoke tests, it skips testing that version. Signed-off-by: Marc Lopez Rubio <[email protected]>
Signed-off-by: Marc Lopez Rubio <[email protected]>
Signed-off-by: Marc Lopez Rubio <[email protected]>
Signed-off-by: Marc Lopez Rubio <[email protected]>
Signed-off-by: Marc Lopez Rubio <[email protected]>
This pull request does not have a backport label. Could you fix it @marclop? 🙏
|
|
VERSION=${1} | ||
if [[ -z ${VERSION} ]] || [[ "${VERSION}" == "latest" ]]; then | ||
VERSION=$(curl -s "https://artifacts-api.elastic.co/v1/versions" | jq -r '.versions[-1]') | ||
VERSION=$(curl -s "https://artifacts-api.elastic.co/v1/versions" | jq -r --arg IGNORE_VERSION "$IGNORE_VERSION" '.versions | map(select(. != $IGNORE_VERSION))[-1]') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: would this work with 9.0.1 ? WDYT about checking that the version string starts with 8.
(similar to what you did below) ?
I'm wondering this since this also needs to be backported to 8.x so we should try to be as compatible as possible
Signed-off-by: Marc Lopez Rubio <[email protected]>
Omits running the smoke tests against 9.0.0-SNAPSHOT, since the it's still in its infancy and other components aren't working properly at the moment. Given how far out the release is and that it breaks the smoke tests, it skips testing that version. --------- Signed-off-by: Marc Lopez Rubio <[email protected]> (cherry picked from commit f37135a)
Omits running the smoke tests against 9.0.0-SNAPSHOT, since the it's still in its infancy and other components aren't working properly at the moment. Given how far out the release is and that it breaks the smoke tests, it skips testing that version. --------- Signed-off-by: Marc Lopez Rubio <[email protected]> (cherry picked from commit f37135a) Co-authored-by: Marc Lopez Rubio <[email protected]>
Motivation/summary
Ignore version 9.0.0 since it's quite far away, this should bring back the smoke tests.