Skip to content

Commit

Permalink
Prep for v8.1.2 (#5681)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jamis committed Aug 24, 2023
1 parent 799e06d commit 368aac9
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 25 deletions.
29 changes: 17 additions & 12 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ functions:
git submodule update --init --recursive
"fetch egos":
- command: shell.exec
params:
working_dir: "src"
script: |
set -ex
curl -sfLo egos https://raw.githubusercontent.com/p-mongo/egos/master/egos
chmod +x ./egos
"create expansions":
# Make an evergreen exapanstion file with dynamic values
- command: shell.exec
Expand Down Expand Up @@ -272,8 +282,7 @@ functions:
DRIVER="${DRIVER}" \
I18N="${I18N}" \
TEST_I18N_FALLBACKS="${TEST_I18N_FALLBACKS}" \
FLE="${FLE}" \
.evergreen/run-tests-docker.sh
.evergreen/run-tests.sh
"fix absolute paths":
- command: shell.exec
Expand All @@ -296,6 +305,7 @@ functions:
pre:
- func: "fetch source"
- func: "fetch egos"
- func: "create expansions"
- func: "fix absolute paths"
- func: "install dependencies"
Expand Down Expand Up @@ -432,24 +442,19 @@ axes:
- id: "os"
display_name: OS
values:
- id: ubuntu-18.04
display_name: "Ubuntu 18.04"
run_on: ubuntu2004-small
variables:
DOCKER_DISTRO: ubuntu1804
- id: ubuntu-22.04
display_name: "Ubuntu 20.04"
run_on: ubuntu2004-small
display_name: "Ubuntu 22.04"
run_on: ubuntu2204-small
variables:
DOCKER_DISTRO: ubuntu2204
- id: debian11
display_name: "Debian 11"
run_on: ubuntu2004-small
run_on: debian11-small
variables:
DOCKER_DISTRO: debian11
- id: rhel80
display_name: "RHEL 8.0"
run_on: ubuntu2004-small
run_on: rhel80-small
variables:
DOCKER_DISTRO: rhel80

Expand Down Expand Up @@ -791,7 +796,7 @@ buildvariants:
topology: standalone
app-tests: yes
rails: ['6.0']
os: ubuntu-18.04
os: ubuntu-22.04
display_name: "app tests ${driver}, ${jruby}"
tasks:
- name: "test"
Expand Down
13 changes: 4 additions & 9 deletions .evergreen/config/axes.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -119,24 +119,19 @@ axes:
- id: "os"
display_name: OS
values:
- id: ubuntu-18.04
display_name: "Ubuntu 18.04"
run_on: ubuntu2004-small
variables:
DOCKER_DISTRO: ubuntu1804
- id: ubuntu-22.04
display_name: "Ubuntu 20.04"
run_on: ubuntu2004-small
display_name: "Ubuntu 22.04"
run_on: ubuntu2204-small
variables:
DOCKER_DISTRO: ubuntu2204
- id: debian11
display_name: "Debian 11"
run_on: ubuntu2004-small
run_on: debian11-small
variables:
DOCKER_DISTRO: debian11
- id: rhel80
display_name: "RHEL 8.0"
run_on: ubuntu2004-small
run_on: rhel80-small
variables:
DOCKER_DISTRO: rhel80

Expand Down
2 changes: 1 addition & 1 deletion .evergreen/config/commands.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ functions:
DRIVER="${DRIVER}" \
I18N="${I18N}" \
TEST_I18N_FALLBACKS="${TEST_I18N_FALLBACKS}" \
./egos .evergreen/run-tests-docker.sh
.evergreen/run-tests.sh

"fix absolute paths":
- command: shell.exec
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/config/variants.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ buildvariants:
topology: standalone
app-tests: yes
rails: ['6.0']
os: ubuntu-18.04
os: ubuntu-22.04
display_name: "app tests ${driver}, ${jruby}"
tasks:
- name: "test"
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
[submodule "spec/shared"]
path = spec/shared
url = https://github.com/mongodb-labs/mongo-ruby-spec-shared
[submodule ".mod/drivers-evergreen-tools"]
path = .mod/drivers-evergreen-tools
url = https://github.com/mongodb-labs/drivers-evergreen-tools
1 change: 1 addition & 0 deletions .mod/drivers-evergreen-tools
2 changes: 1 addition & 1 deletion gemfiles/bson_min.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"
gemspec path: '..'

gem 'bson', '4.14.0'
gem 'bson', '4.14.1'
gem 'mongo'

gem 'actionpack'
Expand Down
2 changes: 1 addition & 1 deletion lib/mongoid/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Mongoid
VERSION = "8.1.1"
VERSION = "8.1.2"
end

0 comments on commit 368aac9

Please sign in to comment.