-
Notifications
You must be signed in to change notification settings - Fork 79
feat: bump Node.js to 16.x MONGOSH-1219 #1285
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
Conversation
import shlex | ||
import subprocess | ||
import shutil | ||
-import bz2 |
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.
This package is just not available on s390x with Python 3 – see the old comment in compile-artifact.sh above about it.
"$CONNECTIVITY_TEST_SOURCE_DIR/ldap.sh" | ||
"$CONNECTIVITY_TEST_SOURCE_DIR/localhost.sh" | ||
"$CONNECTIVITY_TEST_SOURCE_DIR/atlas.sh" | ||
"$CONNECTIVITY_TEST_SOURCE_DIR/kerberos.sh" |
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.
Drive-by fix: This seems better, since it isolates the scripts more strongly, and exit 0
inside the script would not exit all the tests at once (previously e.g. the kerberos tests would always be skipped if no atlas credentials were in the environment)
echo "Atlas credentials are not provided" | ||
|
||
if [[ -z "${IS_CI}" ]] || [[ -z "${CI}" ]]; then | ||
if [[ -n "${IS_CI}" ]] || [[ -n "${CI}" ]]; then |
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.
Also drive-by fix, these were just typos
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.
✨
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.
🔥
No description provided.