Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3662,7 +3662,7 @@ tasks:
type: setup
params:
updates:
- {key: NODE_LTS_VERSION, value: latest}
- {key: NODE_LTS_VERSION, value: '22'}
- {key: NPM_VERSION, value: '9'}
- func: install dependencies
- func: check resource management
Expand All @@ -3676,7 +3676,7 @@ tasks:
updates:
- {key: VERSION, value: latest}
- {key: TOPOLOGY, value: replica_set}
- {key: NODE_LTS_VERSION, value: latest}
- {key: NODE_LTS_VERSION, value: '22'}
- func: install dependencies
- func: bootstrap mongo-orchestration
- func: check resource management feature integration
Expand Down Expand Up @@ -5085,6 +5085,7 @@ buildvariants:
- test-tls-support-5.0
- test-tls-support-4.4
- test-tls-support-4.2
disable: true
- name: windows-vsCurrent-large-gallium
display_name: Windows Node16
run_on: windows-vsCurrent-large
Expand Down
9 changes: 5 additions & 4 deletions .evergreen/generate_evergreen_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,13 @@ for (const {
display_name: `${osDisplayName} Node Latest`,
run_on,
expansions: { NODE_LTS_VERSION: 'latest' },
tasks: tasks.map(({ name }) => name)
tasks: tasks.map(({ name }) => name),
// TODO(NODE-6641): Unskip the smoke tests
disable: true
};
if (clientEncryption) {
buildVariantData.expansions.CLIENT_ENCRYPTION = true;
}

BUILD_VARIANTS.push(buildVariantData);
}
}
Expand Down Expand Up @@ -549,7 +550,7 @@ SINGLETON_TASKS.push(
tags: ['resource-management'],
commands: [
updateExpansions({
NODE_LTS_VERSION: 'latest',
NODE_LTS_VERSION: LATEST_LTS,
NPM_VERSION: 9
}),
{ func: 'install dependencies' },
Expand All @@ -563,7 +564,7 @@ SINGLETON_TASKS.push(
updateExpansions({
VERSION: 'latest',
TOPOLOGY: 'replica_set',
NODE_LTS_VERSION: 'latest'
NODE_LTS_VERSION: LATEST_LTS
}),
{ func: 'install dependencies' },
{ func: 'bootstrap mongo-orchestration' },
Expand Down
Loading