Skip to content
Draft
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
4 changes: 3 additions & 1 deletion .evergreen/ci_matrix_constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const UBUNTU_OS = 'ubuntu1804-large';
const UBUNTU_20_OS = 'ubuntu2004-small';
const UBUNTU_22_OS = 'ubuntu2204-large';
const DEBIAN_OS = 'debian11-small';
const GRAVITON_OS = 'amazon2023-arm64-latest-large-m8g';

module.exports = {
MONGODB_VERSIONS,
Expand All @@ -37,5 +38,6 @@ module.exports = {
UBUNTU_OS,
UBUNTU_20_OS,
UBUNTU_22_OS,
DEBIAN_OS
DEBIAN_OS,
GRAVITON_OS
};
13 changes: 13 additions & 0 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4079,3 +4079,16 @@ buildvariants:
NODE_LTS_VERSION: 24
CLIENT_ENCRYPTION: true
MONGODB_BUNDLED: true
- name: amazon-linux-2023-arm64-graviton4
display_name: Graviton4 AL2023 Node24
run_on: amazon2023-arm64-latest-large-m8g
expansions:
NODE_LTS_VERSION: 24
CLIENT_ENCRYPTION: true
tasks:
- test-latest-server
- test-latest-replica_set
- test-latest-sharded_cluster
- test-latest-server-v1-api
- test-zstd-compression
- test-snappy-compression
23 changes: 22 additions & 1 deletion .evergreen/generate_evergreen_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const {
MACOS_OS,
UBUNTU_20_OS,
DEBIAN_OS,
UBUNTU_22_OS
UBUNTU_22_OS,
GRAVITON_OS
} = require('./ci_matrix_constants');

// TODO(NODE-7499): unpin npm version once Node 22 ships a bundled npm that can upgrade itself
Expand Down Expand Up @@ -875,6 +876,26 @@ BUILD_VARIANTS.push({
expansions: nodelessExpansions
});

const gravitonTasks = [
'test-latest-server',
'test-latest-replica_set',
'test-latest-sharded_cluster',
'test-latest-server-v1-api',
'test-zstd-compression',
'test-snappy-compression',
];

BUILD_VARIANTS.push({
name: 'amazon-linux-2023-arm64-graviton4',
display_name: `Graviton4 AL2023 Node${LATEST_LTS}`,
run_on: GRAVITON_OS,
expansions: {
NODE_LTS_VERSION: LATEST_LTS,
CLIENT_ENCRYPTION: true,
},
tasks: gravitonTasks,
});

// TODO(NODE-4897): Debug socks5 tests on node latest
for (const variant of BUILD_VARIANTS.filter(
variant => variant.expansions && ['latest'].includes(variant.expansions.NODE_LTS_VERSION)
Expand Down
Loading