Skip to content

Commit 5f44501

Browse files
committed
chore: bump crypt_shared and add 8.2 tests
1 parent 0a147f0 commit 5f44501

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.evergreen/constants.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ exports.MONGODB_VERSIONS = [
3737
{ shortName: '70xe', versionSpec: '7.0.x-enterprise' },
3838
{ shortName: '80xc', versionSpec: '8.0.x' },
3939
{ shortName: '80xe', versionSpec: '8.0.x-enterprise' },
40+
{ shortName: '82xc', versionSpec: '8.2.x' },
41+
{ shortName: '82xe', versionSpec: '8.2.x-enterprise' },
4042
{ shortName: 'latest', versionSpec: 'latest-alpha-enterprise' },
4143
];
4244

packages/build/src/packaging/download-crypt-library.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ export async function downloadCryptLibrary(
3636
// (for the platforms that they exist for, i.e. for ppc64le/s390x only pick stable releases).
3737
let versionSpec = 'stable'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
3838
if (/ppc64|s390x/.test(opts.arch || process.arch)) {
39-
versionSpec = 'stable';
39+
versionSpec = '8.2.0';
4040
}
4141
if ((opts.platform || process.platform) === 'darwin') {
42-
versionSpec = '8.0.5'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.
42+
versionSpec = '8.2.0'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.
4343
}
4444
const { downloadedBinDir: libdir, version } =
4545
await downloadMongoDbWithVersionInfo(cryptTmpTargetDir, versionSpec, opts);

0 commit comments

Comments
 (0)