Skip to content

Commit 9a75325

Browse files
fix install of node20
1 parent 867662b commit 9a75325

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.evergreen/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2591,6 +2591,7 @@ tasks:
25912591
- {key: VERSION, value: latest}
25922592
- {key: TOPOLOGY, value: sharded_cluster}
25932593
- {key: AUTH, value: auth}
2594+
- {key: NODE_LTS_VERSION, value: '22'}
25942595
- func: install dependencies
25952596
- func: bootstrap mongo-orchestration
25962597
- func: run tests
@@ -2606,6 +2607,7 @@ tasks:
26062607
- {key: VERSION, value: rapid}
26072608
- {key: TOPOLOGY, value: sharded_cluster}
26082609
- {key: AUTH, value: auth}
2610+
- {key: NODE_LTS_VERSION, value: '22'}
26092611
- func: install dependencies
26102612
- func: bootstrap mongo-orchestration
26112613
- func: run tests
@@ -2621,6 +2623,7 @@ tasks:
26212623
- {key: VERSION, value: '8.0'}
26222624
- {key: TOPOLOGY, value: sharded_cluster}
26232625
- {key: AUTH, value: auth}
2626+
- {key: NODE_LTS_VERSION, value: '22'}
26242627
- func: install dependencies
26252628
- func: bootstrap mongo-orchestration
26262629
- func: run tests
@@ -2636,6 +2639,7 @@ tasks:
26362639
- {key: VERSION, value: '7.0'}
26372640
- {key: TOPOLOGY, value: sharded_cluster}
26382641
- {key: AUTH, value: auth}
2642+
- {key: NODE_LTS_VERSION, value: '22'}
26392643
- func: install dependencies
26402644
- func: bootstrap mongo-orchestration
26412645
- func: run tests
@@ -2651,6 +2655,7 @@ tasks:
26512655
- {key: VERSION, value: '6.0'}
26522656
- {key: TOPOLOGY, value: sharded_cluster}
26532657
- {key: AUTH, value: auth}
2658+
- {key: NODE_LTS_VERSION, value: '22'}
26542659
- func: install dependencies
26552660
- func: bootstrap mongo-orchestration
26562661
- func: run tests
@@ -2666,6 +2671,7 @@ tasks:
26662671
- {key: VERSION, value: '5.0'}
26672672
- {key: TOPOLOGY, value: sharded_cluster}
26682673
- {key: AUTH, value: auth}
2674+
- {key: NODE_LTS_VERSION, value: '22'}
26692675
- func: install dependencies
26702676
- func: bootstrap mongo-orchestration
26712677
- func: run tests
@@ -2681,6 +2687,7 @@ tasks:
26812687
- {key: VERSION, value: '4.4'}
26822688
- {key: TOPOLOGY, value: sharded_cluster}
26832689
- {key: AUTH, value: auth}
2690+
- {key: NODE_LTS_VERSION, value: '22'}
26842691
- func: install dependencies
26852692
- func: bootstrap mongo-orchestration
26862693
- func: run tests
@@ -2696,6 +2703,7 @@ tasks:
26962703
- {key: VERSION, value: '4.2'}
26972704
- {key: TOPOLOGY, value: sharded_cluster}
26982705
- {key: AUTH, value: auth}
2706+
- {key: NODE_LTS_VERSION, value: '22'}
26992707
- func: install dependencies
27002708
- func: bootstrap mongo-orchestration
27012709
- func: run tests

.evergreen/generate_evergreen_tasks.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,8 @@ const MONGOCRYPTD_CSFLE_TASKS = MONGODB_VERSIONS.filter(
462462
updateExpansions({
463463
VERSION: mongoVersion,
464464
TOPOLOGY: 'sharded_cluster',
465-
AUTH: 'auth'
465+
AUTH: 'auth',
466+
NODE_LTS_VERSION: LATEST_LTS
466467
}),
467468
{ func: 'install dependencies' },
468469
{ func: 'bootstrap mongo-orchestration' },

drivers-evergreen-tools

0 commit comments

Comments
 (0)