File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3662,7 +3662,7 @@ tasks:
3662
3662
type : setup
3663
3663
params :
3664
3664
updates :
3665
- - {key: NODE_LTS_VERSION, value: latest }
3665
+ - {key: NODE_LTS_VERSION, value: '22' }
3666
3666
- {key: NPM_VERSION, value: '9'}
3667
3667
- func : install dependencies
3668
3668
- func : check resource management
@@ -3676,7 +3676,7 @@ tasks:
3676
3676
updates :
3677
3677
- {key: VERSION, value: latest}
3678
3678
- {key: TOPOLOGY, value: replica_set}
3679
- - {key: NODE_LTS_VERSION, value: latest }
3679
+ - {key: NODE_LTS_VERSION, value: '22' }
3680
3680
- func : install dependencies
3681
3681
- func : bootstrap mongo-orchestration
3682
3682
- func : check resource management feature integration
@@ -5085,6 +5085,7 @@ buildvariants:
5085
5085
- test-tls-support-5.0
5086
5086
- test-tls-support-4.4
5087
5087
- test-tls-support-4.2
5088
+ disable : true
5088
5089
- name : windows-vsCurrent-large-gallium
5089
5090
display_name : Windows Node16
5090
5091
run_on : windows-vsCurrent-large
Original file line number Diff line number Diff line change @@ -436,12 +436,13 @@ for (const {
436
436
display_name : `${ osDisplayName } Node Latest` ,
437
437
run_on,
438
438
expansions : { NODE_LTS_VERSION : 'latest' } ,
439
- tasks : tasks . map ( ( { name } ) => name )
439
+ tasks : tasks . map ( ( { name } ) => name ) ,
440
+ // TODO(NODE-6641): Unskip the smoke tests
441
+ disable : true
440
442
} ;
441
443
if ( clientEncryption ) {
442
444
buildVariantData . expansions . CLIENT_ENCRYPTION = true ;
443
445
}
444
-
445
446
BUILD_VARIANTS . push ( buildVariantData ) ;
446
447
}
447
448
}
@@ -549,7 +550,7 @@ SINGLETON_TASKS.push(
549
550
tags : [ 'resource-management' ] ,
550
551
commands : [
551
552
updateExpansions ( {
552
- NODE_LTS_VERSION : 'latest' ,
553
+ NODE_LTS_VERSION : LATEST_LTS ,
553
554
NPM_VERSION : 9
554
555
} ) ,
555
556
{ func : 'install dependencies' } ,
@@ -563,7 +564,7 @@ SINGLETON_TASKS.push(
563
564
updateExpansions ( {
564
565
VERSION : 'latest' ,
565
566
TOPOLOGY : 'replica_set' ,
566
- NODE_LTS_VERSION : 'latest'
567
+ NODE_LTS_VERSION : LATEST_LTS
567
568
} ) ,
568
569
{ func : 'install dependencies' } ,
569
570
{ func : 'bootstrap mongo-orchestration' } ,
You can’t perform that action at this time.
0 commit comments