Skip to content

Commit 2303b41

Browse files
authored
feat: add fermium to evergreen test runs (#2762)
1 parent 93f3ea5 commit 2303b41

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

.evergreen/config.yml

+39
Original file line numberDiff line numberDiff line change
@@ -1245,6 +1245,12 @@ buildvariants:
12451245
expansions:
12461246
NODE_LTS_NAME: erbium
12471247
tasks: *ref_0
1248+
- name: macos-1014-fermium
1249+
display_name: macOS 10.14 Node Fermium
1250+
run_on: macos-1014
1251+
expansions:
1252+
NODE_LTS_NAME: fermium
1253+
tasks: *ref_0
12481254
- name: rhel70-dubnium
12491255
display_name: RHEL 7.0 Node Dubnium
12501256
run_on: rhel70-small
@@ -1312,6 +1318,12 @@ buildvariants:
13121318
expansions:
13131319
NODE_LTS_NAME: erbium
13141320
tasks: *ref_1
1321+
- name: rhel70-fermium
1322+
display_name: RHEL 7.0 Node Fermium
1323+
run_on: rhel70-small
1324+
expansions:
1325+
NODE_LTS_NAME: fermium
1326+
tasks: *ref_1
13151327
- name: ubuntu-14.04-dubnium
13161328
display_name: Ubuntu 14.04 Node Dubnium
13171329
run_on: ubuntu1404-large
@@ -1346,6 +1358,12 @@ buildvariants:
13461358
expansions:
13471359
NODE_LTS_NAME: erbium
13481360
tasks: *ref_2
1361+
- name: ubuntu-14.04-fermium
1362+
display_name: Ubuntu 14.04 Node Fermium
1363+
run_on: ubuntu1404-large
1364+
expansions:
1365+
NODE_LTS_NAME: fermium
1366+
tasks: *ref_2
13491367
- name: ubuntu-18.04-dubnium
13501368
display_name: Ubuntu 18.04 Node Dubnium
13511369
run_on: ubuntu1804-large
@@ -1409,6 +1427,13 @@ buildvariants:
14091427
NODE_LTS_NAME: erbium
14101428
CLIENT_ENCRYPTION: true
14111429
tasks: *ref_3
1430+
- name: ubuntu-18.04-fermium
1431+
display_name: Ubuntu 18.04 Node Fermium
1432+
run_on: ubuntu1804-large
1433+
expansions:
1434+
NODE_LTS_NAME: fermium
1435+
CLIENT_ENCRYPTION: true
1436+
tasks: *ref_3
14121437
- name: windows-64-vs2015-dubnium
14131438
display_name: Windows (VS2015) Node Dubnium
14141439
run_on: windows-64-vs2015-large
@@ -1446,6 +1471,13 @@ buildvariants:
14461471
NODE_LTS_NAME: erbium
14471472
MSVS_VERSION: 2015
14481473
tasks: *ref_4
1474+
- name: windows-64-vs2015-fermium
1475+
display_name: Windows (VS2015) Node Fermium
1476+
run_on: windows-64-vs2015-large
1477+
expansions:
1478+
NODE_LTS_NAME: fermium
1479+
MSVS_VERSION: 2015
1480+
tasks: *ref_4
14491481
- name: windows-64-vs2017-dubnium
14501482
display_name: Windows (VS2017) Node Dubnium
14511483
run_on: windows-64-vs2017-large
@@ -1460,6 +1492,13 @@ buildvariants:
14601492
NODE_LTS_NAME: erbium
14611493
MSVS_VERSION: 2017
14621494
tasks: *ref_4
1495+
- name: windows-64-vs2017-fermium
1496+
display_name: Windows (VS2017) Node Fermium
1497+
run_on: windows-64-vs2017-large
1498+
expansions:
1499+
NODE_LTS_NAME: fermium
1500+
MSVS_VERSION: 2017
1501+
tasks: *ref_4
14631502
- name: lint
14641503
display_name: lint
14651504
run_on: rhel70

.evergreen/generate_evergreen_tasks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const yaml = require('js-yaml');
44

55
const LATEST_EFFECTIVE_VERSION = '5.0';
66
const MONGODB_VERSIONS = ['latest', '4.4', '4.2', '4.0', '3.6', '3.4', '3.2', '3.0', '2.6'];
7-
const NODE_VERSIONS = ['dubnium', 'erbium'];
7+
const NODE_VERSIONS = ['dubnium', 'erbium', 'fermium'];
88
const TOPOLOGIES = ['server', 'replica_set', 'sharded_cluster'];
99
const AWS_AUTH_VERSIONS = ['latest', '4.4'];
1010
const OCSP_VERSIONS = ['latest', '4.4'];

0 commit comments

Comments
 (0)