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
9 changes: 3 additions & 6 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4044,15 +4044,15 @@ buildvariants:
- test-latest-server-v1-api
- test-x509-authentication
- test-atlas-connectivity
- test-rapid-load-balanced
- test-latest-load-balanced
- test-auth-kerberos
- test-auth-ldap
- test-socks5-csfle
- test-socks5-tls
- test-snappy-compression
- test-zstd-compression
- test-tls-support-latest
- test-rapid-load-balanced
- test-latest-load-balanced
- test-auth-kerberos
expansions:
NODE_LTS_VERSION: 24
CLIENT_ENCRYPTION: true
Expand All @@ -4070,9 +4070,6 @@ buildvariants:
- test-latest-server-v1-api
- test-x509-authentication
- test-atlas-connectivity
- test-rapid-load-balanced
- test-latest-load-balanced
- test-auth-kerberos
- test-auth-ldap
- test-socks5-csfle
- test-socks5-tls
Expand Down
18 changes: 12 additions & 6 deletions .evergreen/generate_evergreen_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ BUILD_VARIANTS.push({
});

// small subset of tests to run on nodeless environments
const nodelessTasks = [
const commonNodelessTasks = [
'test-latest-server',
'test-latest-replica_set',
'test-latest-sharded_cluster',
Expand All @@ -839,16 +839,22 @@ const nodelessTasks = [
'test-latest-server-v1-api',
'test-x509-authentication',
'test-atlas-connectivity',
'test-rapid-load-balanced',
'test-latest-load-balanced',
'test-auth-kerberos',
'test-auth-ldap',
'test-socks5-csfle',
'test-socks5-tls',
Comment on lines 839 to 844
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says this is specific to the Windows Nodeless variant, but this change removes tasks from the shared nodelessTasks list (which may be consumed by multiple nodeless variants). If Windows-only behavior is intended, consider scoping these removals to the Windows nodeless variant definition (or introducing a Windows-specific nodeless task list) so Linux/macOS nodeless scheduling isn’t inadvertently changed.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is true @PavelSafronov , do we want to remove those tests from both platforms? If so - can you please update the PR title (commit message will be squashed in merge).

'test-snappy-compression',
'test-zstd-compression',
'test-tls-support-latest'
];
// small subset of linux-specific tests to run on nodeless environments
const linuxOnlyTests = [
'test-rapid-load-balanced',
'test-latest-load-balanced',
'test-auth-kerberos'
];

const linuxNodelessTasks = commonNodelessTasks.concat(linuxOnlyTests);

const nodelessExpansions = {
NODE_LTS_VERSION: LATEST_LTS,
CLIENT_ENCRYPTION: true,
Expand All @@ -858,14 +864,14 @@ BUILD_VARIANTS.push({
name: 'rhel8-nodeless',
display_name: 'Nodeless',
run_on: DEFAULT_OS,
tasks: nodelessTasks,
tasks: linuxNodelessTasks,
expansions: nodelessExpansions
});
BUILD_VARIANTS.push({
name: 'windows-nodeless',
display_name: 'Windows Nodeless',
run_on: WINDOWS_OS,
tasks: nodelessTasks,
tasks: commonNodelessTasks,
expansions: nodelessExpansions
});

Expand Down
Loading