Skip to content

Commit 4a79978

Browse files
chore: address comments
1 parent 7a80e37 commit 4a79978

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2319,8 +2319,8 @@ buildvariants:
23192319
MSVS_VERSION: 2019
23202320
tasks: *ref_1
23212321
- name: macos-1100
2322-
display_name: macOS 10.14 Node gallium
2323-
run_on: macos-1014
2322+
display_name: MacOS 11 Node Gallium
2323+
run_on: macos-1100
23242324
expansions:
23252325
NODE_LTS_NAME: gallium
23262326
CLIENT_ENCRYPTION: true

.evergreen/generate_evergreen_tasks.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ OPERATING_SYSTEMS.forEach(
357357
const tasks = getTaskList(mongoVersion, osName.split('-')[0]);
358358

359359
testedNodeVersions.forEach(NODE_LTS_NAME => {
360-
const nodeLtsDisplayName = `Node ${NODE_LTS_NAME[0].toUpperCase()}${NODE_LTS_NAME.substr(1)}`;
360+
const nodeLtsDisplayName = `Node ${NODE_LTS_NAME[0].toUpperCase()}${NODE_LTS_NAME.slice(1)}`;
361361
const name = `${osName}-${NODE_LTS_NAME}`;
362362
const display_name = `${osDisplayName} ${nodeLtsDisplayName}`;
363363
const expansions = { NODE_LTS_NAME };
@@ -376,8 +376,8 @@ OPERATING_SYSTEMS.forEach(
376376

377377
BUILD_VARIANTS.push({
378378
name: 'macos-1100',
379-
display_name: `macOS 10.14 Node ${LATEST_LTS}`,
380-
run_on: 'macos-1014',
379+
display_name: `MacOS 11 Node ${LATEST_LTS[0].toUpperCase()}${LATEST_LTS.slice(1)}`,
380+
run_on: 'macos-1100',
381381
expansions: {
382382
NODE_LTS_NAME: LATEST_LTS,
383383
CLIENT_ENCRYPTION: true

0 commit comments

Comments
 (0)