Skip to content

Commit e4f54c0

Browse files
fix install of node20
1 parent 413defe commit e4f54c0

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
@@ -2485,6 +2485,7 @@ tasks:
24852485
- {key: VERSION, value: latest}
24862486
- {key: TOPOLOGY, value: sharded_cluster}
24872487
- {key: AUTH, value: auth}
2488+
- {key: NODE_LTS_VERSION, value: '22'}
24882489
- func: install dependencies
24892490
- func: bootstrap mongo-orchestration
24902491
- func: run tests
@@ -2500,6 +2501,7 @@ tasks:
25002501
- {key: VERSION, value: rapid}
25012502
- {key: TOPOLOGY, value: sharded_cluster}
25022503
- {key: AUTH, value: auth}
2504+
- {key: NODE_LTS_VERSION, value: '22'}
25032505
- func: install dependencies
25042506
- func: bootstrap mongo-orchestration
25052507
- func: run tests
@@ -2515,6 +2517,7 @@ tasks:
25152517
- {key: VERSION, value: '8.0'}
25162518
- {key: TOPOLOGY, value: sharded_cluster}
25172519
- {key: AUTH, value: auth}
2520+
- {key: NODE_LTS_VERSION, value: '22'}
25182521
- func: install dependencies
25192522
- func: bootstrap mongo-orchestration
25202523
- func: run tests
@@ -2530,6 +2533,7 @@ tasks:
25302533
- {key: VERSION, value: '7.0'}
25312534
- {key: TOPOLOGY, value: sharded_cluster}
25322535
- {key: AUTH, value: auth}
2536+
- {key: NODE_LTS_VERSION, value: '22'}
25332537
- func: install dependencies
25342538
- func: bootstrap mongo-orchestration
25352539
- func: run tests
@@ -2545,6 +2549,7 @@ tasks:
25452549
- {key: VERSION, value: '6.0'}
25462550
- {key: TOPOLOGY, value: sharded_cluster}
25472551
- {key: AUTH, value: auth}
2552+
- {key: NODE_LTS_VERSION, value: '22'}
25482553
- func: install dependencies
25492554
- func: bootstrap mongo-orchestration
25502555
- func: run tests
@@ -2560,6 +2565,7 @@ tasks:
25602565
- {key: VERSION, value: '5.0'}
25612566
- {key: TOPOLOGY, value: sharded_cluster}
25622567
- {key: AUTH, value: auth}
2568+
- {key: NODE_LTS_VERSION, value: '22'}
25632569
- func: install dependencies
25642570
- func: bootstrap mongo-orchestration
25652571
- func: run tests
@@ -2575,6 +2581,7 @@ tasks:
25752581
- {key: VERSION, value: '4.4'}
25762582
- {key: TOPOLOGY, value: sharded_cluster}
25772583
- {key: AUTH, value: auth}
2584+
- {key: NODE_LTS_VERSION, value: '22'}
25782585
- func: install dependencies
25792586
- func: bootstrap mongo-orchestration
25802587
- func: run tests
@@ -2590,6 +2597,7 @@ tasks:
25902597
- {key: VERSION, value: '4.2'}
25912598
- {key: TOPOLOGY, value: sharded_cluster}
25922599
- {key: AUTH, value: auth}
2600+
- {key: NODE_LTS_VERSION, value: '22'}
25932601
- func: install dependencies
25942602
- func: bootstrap mongo-orchestration
25952603
- func: run tests

.evergreen/generate_evergreen_tasks.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,8 @@ const MONGOCRYPTD_CSFLE_TASKS = MONGODB_VERSIONS.filter(
435435
updateExpansions({
436436
VERSION: mongoVersion,
437437
TOPOLOGY: 'sharded_cluster',
438-
AUTH: 'auth'
438+
AUTH: 'auth',
439+
NODE_LTS_VERSION: LATEST_LTS
439440
}),
440441
{ func: 'install dependencies' },
441442
{ func: 'bootstrap mongo-orchestration' },

drivers-evergreen-tools

0 commit comments

Comments
 (0)