Skip to content

Commit 368aac9

Browse files
authored
Prep for v8.1.2 (#5681)
* version bump * see if we can work around the docker limits by not using docker * fixes for evergreen distros * apparently spec/shared wants .mod/drivers-evergreen-tools * bump min bson version for mongo compatibility
1 parent 799e06d commit 368aac9

File tree

8 files changed

+29
-25
lines changed

8 files changed

+29
-25
lines changed

.evergreen/config.yml

+17-12
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ functions:
3838
3939
git submodule update --init --recursive
4040
41+
"fetch egos":
42+
- command: shell.exec
43+
params:
44+
working_dir: "src"
45+
script: |
46+
set -ex
47+
48+
curl -sfLo egos https://raw.githubusercontent.com/p-mongo/egos/master/egos
49+
chmod +x ./egos
50+
4151
"create expansions":
4252
# Make an evergreen exapanstion file with dynamic values
4353
- command: shell.exec
@@ -272,8 +282,7 @@ functions:
272282
DRIVER="${DRIVER}" \
273283
I18N="${I18N}" \
274284
TEST_I18N_FALLBACKS="${TEST_I18N_FALLBACKS}" \
275-
FLE="${FLE}" \
276-
.evergreen/run-tests-docker.sh
285+
.evergreen/run-tests.sh
277286
278287
"fix absolute paths":
279288
- command: shell.exec
@@ -296,6 +305,7 @@ functions:
296305
297306
pre:
298307
- func: "fetch source"
308+
- func: "fetch egos"
299309
- func: "create expansions"
300310
- func: "fix absolute paths"
301311
- func: "install dependencies"
@@ -432,24 +442,19 @@ axes:
432442
- id: "os"
433443
display_name: OS
434444
values:
435-
- id: ubuntu-18.04
436-
display_name: "Ubuntu 18.04"
437-
run_on: ubuntu2004-small
438-
variables:
439-
DOCKER_DISTRO: ubuntu1804
440445
- id: ubuntu-22.04
441-
display_name: "Ubuntu 20.04"
442-
run_on: ubuntu2004-small
446+
display_name: "Ubuntu 22.04"
447+
run_on: ubuntu2204-small
443448
variables:
444449
DOCKER_DISTRO: ubuntu2204
445450
- id: debian11
446451
display_name: "Debian 11"
447-
run_on: ubuntu2004-small
452+
run_on: debian11-small
448453
variables:
449454
DOCKER_DISTRO: debian11
450455
- id: rhel80
451456
display_name: "RHEL 8.0"
452-
run_on: ubuntu2004-small
457+
run_on: rhel80-small
453458
variables:
454459
DOCKER_DISTRO: rhel80
455460

@@ -791,7 +796,7 @@ buildvariants:
791796
topology: standalone
792797
app-tests: yes
793798
rails: ['6.0']
794-
os: ubuntu-18.04
799+
os: ubuntu-22.04
795800
display_name: "app tests ${driver}, ${jruby}"
796801
tasks:
797802
- name: "test"

.evergreen/config/axes.yml.erb

+4-9
Original file line numberDiff line numberDiff line change
@@ -119,24 +119,19 @@ axes:
119119
- id: "os"
120120
display_name: OS
121121
values:
122-
- id: ubuntu-18.04
123-
display_name: "Ubuntu 18.04"
124-
run_on: ubuntu2004-small
125-
variables:
126-
DOCKER_DISTRO: ubuntu1804
127122
- id: ubuntu-22.04
128-
display_name: "Ubuntu 20.04"
129-
run_on: ubuntu2004-small
123+
display_name: "Ubuntu 22.04"
124+
run_on: ubuntu2204-small
130125
variables:
131126
DOCKER_DISTRO: ubuntu2204
132127
- id: debian11
133128
display_name: "Debian 11"
134-
run_on: ubuntu2004-small
129+
run_on: debian11-small
135130
variables:
136131
DOCKER_DISTRO: debian11
137132
- id: rhel80
138133
display_name: "RHEL 8.0"
139-
run_on: ubuntu2004-small
134+
run_on: rhel80-small
140135
variables:
141136
DOCKER_DISTRO: rhel80
142137

.evergreen/config/commands.yml.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ functions:
256256
DRIVER="${DRIVER}" \
257257
I18N="${I18N}" \
258258
TEST_I18N_FALLBACKS="${TEST_I18N_FALLBACKS}" \
259-
./egos .evergreen/run-tests-docker.sh
259+
.evergreen/run-tests.sh
260260

261261
"fix absolute paths":
262262
- command: shell.exec

.evergreen/config/variants.yml.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ buildvariants:
227227
topology: standalone
228228
app-tests: yes
229229
rails: ['6.0']
230-
os: ubuntu-18.04
230+
os: ubuntu-22.04
231231
display_name: "app tests ${driver}, ${jruby}"
232232
tasks:
233233
- name: "test"

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "spec/shared"]
55
path = spec/shared
66
url = https://github.com/mongodb-labs/mongo-ruby-spec-shared
7+
[submodule ".mod/drivers-evergreen-tools"]
8+
path = .mod/drivers-evergreen-tools
9+
url = https://github.com/mongodb-labs/drivers-evergreen-tools

.mod/drivers-evergreen-tools

Submodule drivers-evergreen-tools added at 88feab3

gemfiles/bson_min.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source "https://rubygems.org"
22
gemspec path: '..'
33

4-
gem 'bson', '4.14.0'
4+
gem 'bson', '4.14.1'
55
gem 'mongo'
66

77
gem 'actionpack'

lib/mongoid/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Mongoid
4-
VERSION = "8.1.1"
4+
VERSION = "8.1.2"
55
end

0 commit comments

Comments
 (0)