Skip to content

Commit 1ec2812

Browse files
wip
1 parent c8732bd commit 1ec2812

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ buildvariants:
11991199
matrix_spec:
12001200
auth-and-ssl: ["auth-and-ssl", "noauth-and-nossl"]
12011201
ruby: "ruby-3.3"
1202-
mongodb-version: ["latest", "8.0", "7.0"]
1202+
mongodb-version: ["8.0", "7.0"]
12031203
topology: ["server", "replica_set", "sharded_cluster"]
12041204
os: ubuntu2204
12051205
display_name: ${auth-and-ssl} ${ruby} db-${mongodb-version} ${topology}
@@ -1209,7 +1209,7 @@ buildvariants:
12091209
- matrix_name: "mongo-recent"
12101210
matrix_spec:
12111211
ruby: ["ruby-3.3", "ruby-3.2", "jruby-9.4"]
1212-
mongodb-version: ["latest", "8.0", "7.0"]
1212+
mongodb-version: ["8.0", "7.0"]
12131213
topology: ["server", "replica_set", "sharded_cluster"]
12141214
os: ubuntu2204
12151215
display_name: "${mongodb-version} ${os} ${topology} ${auth-and-ssl} ${ruby}"

.evergreen/config/standard.yml.erb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
latest_stable_mdb = "8.0".inspect # so it gets quoted as a string
3535

3636
# A few of the most recent MongoDB versions
37-
actual_and_upcoming_mdb = %w( latest 8.0 7.0 )
37+
# actual_and_upcoming_mdb = %w( latest 8.0 7.0 )
38+
actual_and_upcoming_mdb = %w( 8.0 7.0 )
3839

3940
recent_mdb = %w( 8.0 7.0 )
4041

spec/atlas/atlas_connectivity_spec.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
context 'with regular authentication' do
2626
regular_auth_env_vars = %w[
27-
ATLAS_SERVERLESS
28-
ATLAS_SRV_SERVERLESS
2927
ATLAS_FREE
3028
ATLAS_SRV_FREE
3129
ATLAS_REPL
@@ -55,8 +53,8 @@
5553

5654
context 'with X.509 authentication' do
5755
x509_auth_env_vars = [
58-
%w[ATLAS_X509_URI ATLAS_X509_CERT_BASE64],
59-
%w[ATLAS_X509_DEV_URI ATLAS_X509_DEV_CERT_BASE64]
56+
%w[ATLAS_X509 ATLAS_X509_CERT_BASE64],
57+
%w[ATLAS_X509_DEV ATLAS_X509_DEV_CERT_BASE64]
6058
]
6159

6260
x509_auth_env_vars.each do |uri_var, cert_var|

0 commit comments

Comments
 (0)