Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .evergreen/setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x
OS_ARCH="$(uname "-m")"

export BASEDIR="$PWD/.evergreen"
export PATH="$BASEDIR/npm-10/node_modules/.bin:$BASEDIR/node-v$NODE_JS_VERSION-win-x64:/opt/java/jdk16/bin:$PATH"
export PATH="$BASEDIR/npm-10/node_modules/.bin:$BASEDIR/node-v$NODE_JS_VERSION-win-x64:/opt/java/jdk17/bin:$PATH"

export MONGOSH_GLOBAL_CONFIG_FILE_FOR_TESTING="$BASEDIR/../../testing/tests-globalconfig.conf"

Expand Down
3 changes: 2 additions & 1 deletion packages/java-shell/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ compileJava.dependsOn browserifyShellApi
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
implementation group: 'org.graalvm.js', name: 'js', version: '22.3.1'
implementation group: 'org.graalvm.polyglot', name: 'polyglot', version: '25.0.1'
implementation group: 'org.graalvm.js', name: 'js', version: '25.0.1'
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.11.1'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
LongResult: 2147483649
LongResult: 1281104301025214464
LongResult: 1281104301025214467
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@IlyaEp Allowing this result makes the tests pass, I assume this is coming from the graalvm update

Loading