Skip to content

Commit b2cb05e

Browse files
test(NODE-7498): remove 3 linux-specific tests from Windows Nodeless variant (#4909)
1 parent e4909bd commit b2cb05e

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.evergreen/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4044,15 +4044,15 @@ buildvariants:
40444044
- test-latest-server-v1-api
40454045
- test-x509-authentication
40464046
- test-atlas-connectivity
4047-
- test-rapid-load-balanced
4048-
- test-latest-load-balanced
4049-
- test-auth-kerberos
40504047
- test-auth-ldap
40514048
- test-socks5-csfle
40524049
- test-socks5-tls
40534050
- test-snappy-compression
40544051
- test-zstd-compression
40554052
- test-tls-support-latest
4053+
- test-rapid-load-balanced
4054+
- test-latest-load-balanced
4055+
- test-auth-kerberos
40564056
expansions:
40574057
NODE_LTS_VERSION: 24
40584058
CLIENT_ENCRYPTION: true
@@ -4070,9 +4070,6 @@ buildvariants:
40704070
- test-latest-server-v1-api
40714071
- test-x509-authentication
40724072
- test-atlas-connectivity
4073-
- test-rapid-load-balanced
4074-
- test-latest-load-balanced
4075-
- test-auth-kerberos
40764073
- test-auth-ldap
40774074
- test-socks5-csfle
40784075
- test-socks5-tls

.evergreen/generate_evergreen_tasks.js

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ BUILD_VARIANTS.push({
829829
});
830830

831831
// small subset of tests to run on nodeless environments
832-
const nodelessTasks = [
832+
const commonNodelessTasks = [
833833
'test-latest-server',
834834
'test-latest-replica_set',
835835
'test-latest-sharded_cluster',
@@ -839,16 +839,22 @@ const nodelessTasks = [
839839
'test-latest-server-v1-api',
840840
'test-x509-authentication',
841841
'test-atlas-connectivity',
842-
'test-rapid-load-balanced',
843-
'test-latest-load-balanced',
844-
'test-auth-kerberos',
845842
'test-auth-ldap',
846843
'test-socks5-csfle',
847844
'test-socks5-tls',
848845
'test-snappy-compression',
849846
'test-zstd-compression',
850847
'test-tls-support-latest'
851848
];
849+
// small subset of linux-specific tests to run on nodeless environments
850+
const linuxOnlyTests = [
851+
'test-rapid-load-balanced',
852+
'test-latest-load-balanced',
853+
'test-auth-kerberos'
854+
];
855+
856+
const linuxNodelessTasks = commonNodelessTasks.concat(linuxOnlyTests);
857+
852858
const nodelessExpansions = {
853859
NODE_LTS_VERSION: LATEST_LTS,
854860
CLIENT_ENCRYPTION: true,
@@ -858,14 +864,14 @@ BUILD_VARIANTS.push({
858864
name: 'rhel8-nodeless',
859865
display_name: 'Nodeless',
860866
run_on: DEFAULT_OS,
861-
tasks: nodelessTasks,
867+
tasks: linuxNodelessTasks,
862868
expansions: nodelessExpansions
863869
});
864870
BUILD_VARIANTS.push({
865871
name: 'windows-nodeless',
866872
display_name: 'Windows Nodeless',
867873
run_on: WINDOWS_OS,
868-
tasks: nodelessTasks,
874+
tasks: commonNodelessTasks,
869875
expansions: nodelessExpansions
870876
});
871877

0 commit comments

Comments
 (0)