Skip to content

Commit

Permalink
ci(NODE-6641): disable Node latest tasks (#4366)
Browse files Browse the repository at this point in the history
  • Loading branch information
W-A-James authored Jan 10, 2025
1 parent 3216d33 commit 13ca440
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
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

0 comments on commit 13ca440

Please sign in to comment.