Skip to content

Commit 5e1af4c

Browse files
Merge upstream/master: resolve conflicts, keep runner delegation and regression test
2 parents 0042e29 + 8db6431 commit 5e1af4c

885 files changed

Lines changed: 18471 additions & 22798 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.evergreen/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ buildvariants:
12731273
- matrix_name: CSOT
12741274
matrix_spec:
12751275
ruby: "ruby-4.0"
1276-
mongodb-version: "8.0"
1276+
mongodb-version: ["8.0", "rapid"]
12771277
topology: replica-set-single-node
12781278
os: ubuntu2204
12791279
display_name: "CSOT - ${mongodb-version}"
@@ -1532,7 +1532,7 @@ buildvariants:
15321532
auth-and-ssl: "noauth-and-nossl"
15331533
ruby: ["ruby-4.0", "ruby-3.4", "ruby-3.3", "ruby-3.2", "ruby-3.1"]
15341534
topology: [replica-set, sharded-cluster]
1535-
mongodb-version: [ '6.0', '7.0', '8.0' ]
1535+
mongodb-version: [ '6.0', '7.0', '8.0', 'rapid' ]
15361536
os: ubuntu2204
15371537
fle: helper
15381538
display_name: "FLE: ${mongodb-version} ${topology} ${ruby}"

.evergreen/config/standard.yml.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ buildvariants:
151151
- matrix_name: CSOT
152152
matrix_spec:
153153
ruby: <%= latest_ruby %>
154-
mongodb-version: <%= latest_stable_mdb %>
154+
mongodb-version: <%= stable_and_rapid %>
155155
topology: replica-set-single-node
156156
os: ubuntu2204
157157
display_name: "CSOT - ${mongodb-version}"
@@ -350,7 +350,7 @@ buildvariants:
350350
auth-and-ssl: "noauth-and-nossl"
351351
ruby: <%= supported_mri_rubies_3_ubuntu %>
352352
topology: [replica-set, sharded-cluster]
353-
mongodb-version: [ '6.0', '7.0', '8.0' ]
353+
mongodb-version: [ '6.0', '7.0', '8.0', 'rapid' ]
354354
os: ubuntu2204
355355
fle: helper
356356
display_name: "FLE: ${mongodb-version} ${topology} ${ruby}"

.github/workflows/rubocop.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
---
21
name: Rubocop
3-
4-
on: [push, pull_request]
2+
on: [ push, pull_request ]
53

64
jobs:
75
build:
@@ -10,7 +8,10 @@ jobs:
108
CI: true
119
TESTOPTS: "-v"
1210
steps:
13-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v2
12+
with:
13+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
14+
submodules: recursive
1415
- name: Set up Ruby 3.0
1516
uses: ruby/setup-ruby@v1
1617
with:

.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
inherit_from: .rubocop_todo.yml
2+
inherit_mode:
3+
merge:
4+
- Exclude
5+
16
plugins:
27
- rubocop-performance
38
- rubocop-rake

0 commit comments

Comments
 (0)