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
106 changes: 53 additions & 53 deletions .evergreen.yml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .evergreen/evergreen.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const MONGODB_VERSIONS = [
{ shortName: '50xe', versionSpec: '5.0.x' },
{ shortName: '60xc', versionSpec: '6.0.x-community' },
{ shortName: '60xe', versionSpec: '6.0.x' },
{ shortName: 'latest', versionSpec: 'latest-alpha' }
{ shortName: 'latest', versionSpec: 'latest-alpha-enterprise' }
];
const NODE_VERSIONS = [
{ shortName: '16', versionSpec: NODE_JS_VERSION_16, skipNodeVersionCheck: '' },
Expand Down Expand Up @@ -810,7 +810,7 @@ tasks:
- func: test_apistrict
vars:
node_js_version: "<% out(NODE_JS_VERSION_16) %>"
mongosh_server_test_version: "latest-alpha"
mongosh_server_test_version: "latest-alpha-enterprise"
mongosh_test_force_api_strict: "1"
- name: compile_artifact
depends_on:
Expand Down Expand Up @@ -864,7 +864,7 @@ tasks:
- func: run_e2e_tests
vars:
node_js_version: "<% out(NODE_JS_VERSION_16) %>"
mongosh_server_test_version: "<% out(mVersion) %>"
mongosh_server_test_version: "<% out(mVersion) %>-enterprise"
mongosh_test_e2e_force_fips: "<% out(fipsVariant === 'fips' ? '1' : '') %>"
<% } } } %>

Expand Down
1 change: 1 addition & 0 deletions .evergreen/setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set -x
export BASEDIR="$PWD/.evergreen"
export PATH="/cygdrive/c/python/Python311/Scripts:/cygdrive/c/python/Python311:/cygdrive/c/Python311/Scripts:/cygdrive/c/Python311:/opt/python/3.6/bin:$BASEDIR/mingit/cmd:$BASEDIR/mingit/mingw64/libexec/git-core:$BASEDIR/git-2:$BASEDIR/npm-8/node_modules/.bin:$BASEDIR/node-v$NODE_JS_VERSION-win-x64:/opt/java/jdk16/bin:/opt/chefdk/gitbin:/cygdrive/c/cmake/bin:/opt/mongodbtoolchain/v3/bin:$PATH"
export IS_MONGOSH_EVERGREEN_CI=1
export DEBUG="mongodb*,$DEBUG"

if [ "$OS" != "Windows_NT" ]; then
if which realpath; then # No realpath on macOS, but also not needed there
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,6 @@ variable. For detailed instructions for each of our supported platforms, please
### Requirements

- Node.js v16.x
- Python 3.x
- The test suite uses [mlaunch](http://blog.rueckstiess.com/mtools/mlaunch.html)
for managing running mongod, you can install that manually as well via
`pip3 install mtools[mlaunch]` if the automatic installation causes any trouble.

### Install

Expand Down
145 changes: 137 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@
"predepcheck": "npm run depalign",
"depcheck": "lerna run --stream depcheck",
"lint": "lerna run lint",
"clear-mlaunch": "ts-node -P configs/tsconfig-mongosh/tsconfig.common.json -r ./scripts/import-expansions scripts/clear-mlaunch",
"install-mlaunch": "ts-node -P configs/tsconfig-mongosh/tsconfig.common.json -r ./scripts/import-expansions scripts/install-mlaunch",
"pretest": "npm run clear-mlaunch && npm run install-mlaunch",
"pretest-ci": "npm run clear-mlaunch -- --killAllMongod && npm run install-mlaunch",
"pretest-e2e-ci": "npm run clear-mlaunch -- --killAllMongod && npm run install-mlaunch",
"posttest": "npm run clear-mlaunch",
"posttest-ci": "npm run clear-mlaunch -- --killAllMongod",
"posttest-e2e-ci": "npm run clear-mlaunch -- --killAllMongod",
"test": "rimraf .nyc_output && lerna exec -- nyc --no-clean --cwd ../.. --reporter=none npm run test && npm run report-coverage",
"test-ci": "rimraf .nyc_output && lerna exec -- nyc --no-clean --cwd ../.. --reporter=none npm run test-ci && npm run post-process-nyc",
"test-ci-nocoverage": "lerna exec -- npm run test-ci",
Expand Down Expand Up @@ -116,6 +108,7 @@
"lerna": "^4.0.0",
"mocha": "^10.2.0",
"mongodb": "^5.7.0",
"mongodb-runner": "^5.4.4",
"node-gyp": "^9.0.0",
"nyc": "^15.1.0",
"pkg-up": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@
},
"dependencies": {
"@mongodb-js/devtools-github-repo": "^1.0.1",
"@mongodb-js/mongodb-downloader": "^0.2.7",
"@mongodb-js/dl-center": "^1.0.1",
"@octokit/rest": "^17.9.0",
"aws-sdk": "^2.674.0",
"boxednode": "^2.0.1",
"command-exists": "^1.2.9",
"download": "^8.0.0",
"es-aggregate-error": "^1.0.9",
"mongodb-download-url": "^1.3.0",
"nock": "^13.0.11",
"node-fetch": "^2.6.1",
"pkg-up": "^3.1.0",
Expand Down
Loading