File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed
.evergreen/build-variants
packages/build/src/packaging Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -11485,27 +11485,27 @@ buildvariants:
11485
11485
mongosh_test_e2e_force_fips : " "
11486
11486
tasks :
11487
11487
- name : e2e_tests_darwin_arm64
11488
- - name : e2e_tests_darwin
11489
- display_name : " MacOS Big Sur (E2E tests)"
11488
+ - name : e2e_tests_darwin_m805
11489
+ display_name : " MacOS Big Sur 805 (E2E tests)"
11490
11490
run_on : macos-11
11491
11491
tags : []
11492
11492
expansions :
11493
11493
executable_os_id : " darwin-x64"
11494
11494
disable_openssl_shared_config_for_bundled_openssl : false
11495
11495
node_js_version : " 20.19.0"
11496
- mongosh_server_test_version : " stable -enterprise"
11496
+ mongosh_server_test_version : " 8.0.5 -enterprise"
11497
11497
mongosh_test_e2e_force_fips : " "
11498
11498
tasks :
11499
11499
- name : e2e_tests_darwin
11500
- - name : e2e_tests_darwin_arm64
11501
- display_name : " MacOS Big Sur arm64 (E2E tests)"
11500
+ - name : e2e_tests_darwin_arm64_m805
11501
+ display_name : " MacOS Big Sur arm64 805 (E2E tests)"
11502
11502
run_on : macos-11-arm64
11503
11503
tags : []
11504
11504
expansions :
11505
11505
executable_os_id : " darwin-arm64"
11506
11506
disable_openssl_shared_config_for_bundled_openssl : false
11507
11507
node_js_version : " 20.19.0"
11508
- mongosh_server_test_version : " stable -enterprise"
11508
+ mongosh_server_test_version : " 8.0.5 -enterprise"
11509
11509
mongosh_test_e2e_force_fips : " "
11510
11510
tasks :
11511
11511
- name : e2e_tests_darwin_arm64
Original file line number Diff line number Diff line change @@ -328,14 +328,14 @@ exports.E2E_TESTS_BUILD_VARIANTS = [
328
328
id : 'darwin' ,
329
329
runOn : 'macos-11' ,
330
330
executableOsId : 'darwin-x64' ,
331
- mVersion : 'stable ' ,
331
+ mVersion : '8.0.5 ' ,
332
332
} ,
333
333
{
334
334
displayName : 'MacOS Big Sur arm64' ,
335
335
runOn : 'macos-11-arm64' ,
336
336
id : 'darwin_arm64' ,
337
337
executableOsId : 'darwin-arm64' ,
338
- mVersion : 'stable ' ,
338
+ mVersion : '8.0.5 ' ,
339
339
additionalTasks : [
340
340
'package_artifact_darwin_x64' ,
341
341
'sign_artifact_darwin_x64' ,
Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ export async function downloadCryptLibrary(
38
38
if ( / p p c 6 4 | s 3 9 0 x / . test ( opts . arch || process . arch ) ) {
39
39
versionSpec = 'stable' ;
40
40
}
41
+ if ( ( opts . platform || process . platform ) === 'darwin' ) {
42
+ versionSpec = '8.0.5' ; // TBD(SERVER-101020): Figure out at what point we use a later version.
43
+ }
41
44
const { downloadedBinDir : libdir , version } =
42
45
await downloadMongoDbWithVersionInfo ( cryptTmpTargetDir , versionSpec , opts ) ;
43
46
const cryptLibrary = path . join (
You can’t perform that action at this time.
0 commit comments