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:
36623662 type : setup
36633663 params :
36643664 updates :
3665- - {key: NODE_LTS_VERSION, value: latest }
3665+ - {key: NODE_LTS_VERSION, value: '22' }
36663666 - {key: NPM_VERSION, value: '9'}
36673667 - func : install dependencies
36683668 - func : check resource management
@@ -3676,7 +3676,7 @@ tasks:
36763676 updates :
36773677 - {key: VERSION, value: latest}
36783678 - {key: TOPOLOGY, value: replica_set}
3679- - {key: NODE_LTS_VERSION, value: latest }
3679+ - {key: NODE_LTS_VERSION, value: '22' }
36803680 - func : install dependencies
36813681 - func : bootstrap mongo-orchestration
36823682 - func : check resource management feature integration
@@ -5085,6 +5085,7 @@ buildvariants:
50855085 - test-tls-support-5.0
50865086 - test-tls-support-4.4
50875087 - test-tls-support-4.2
5088+ disable : true
50885089 - name : windows-vsCurrent-large-gallium
50895090 display_name : Windows Node16
50905091 run_on : windows-vsCurrent-large
Original file line number Diff line number Diff line change @@ -436,12 +436,13 @@ for (const {
436436 display_name : `${ osDisplayName } Node Latest` ,
437437 run_on,
438438 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
440442 } ;
441443 if ( clientEncryption ) {
442444 buildVariantData . expansions . CLIENT_ENCRYPTION = true ;
443445 }
444-
445446 BUILD_VARIANTS . push ( buildVariantData ) ;
446447 }
447448}
@@ -549,7 +550,7 @@ SINGLETON_TASKS.push(
549550 tags : [ 'resource-management' ] ,
550551 commands : [
551552 updateExpansions ( {
552- NODE_LTS_VERSION : 'latest' ,
553+ NODE_LTS_VERSION : LATEST_LTS ,
553554 NPM_VERSION : 9
554555 } ) ,
555556 { func : 'install dependencies' } ,
@@ -563,7 +564,7 @@ SINGLETON_TASKS.push(
563564 updateExpansions ( {
564565 VERSION : 'latest' ,
565566 TOPOLOGY : 'replica_set' ,
566- NODE_LTS_VERSION : 'latest'
567+ NODE_LTS_VERSION : LATEST_LTS
567568 } ) ,
568569 { func : 'install dependencies' } ,
569570 { func : 'bootstrap mongo-orchestration' } ,
You can’t perform that action at this time.
0 commit comments