Skip to content

Commit 70e0197

Browse files
authored
CDRIVER-4771 use Docker image to run mongohouse (#1517)
* CDRIVER-4771 use mongohouse docker image * migrate to ubuntu 22.04
1 parent 2686701 commit 70e0197

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.evergreen/generated_configs/legacy-config.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,18 +223,17 @@ functions:
223223
set -o errexit
224224
cd drivers-evergreen-tools
225225
export DRIVERS_TOOLS=$(pwd)
226-
bash .evergreen/atlas_data_lake/build-mongohouse-local.sh
226+
bash .evergreen/atlas_data_lake/pull-mongohouse-image.sh
227227
run mongohouse:
228228
- command: shell.exec
229229
type: test
230230
params:
231-
background: true
232231
shell: bash
233232
script: |-
234233
set -o errexit
235234
cd drivers-evergreen-tools
236235
export DRIVERS_TOOLS=$(pwd)
237-
bash .evergreen/atlas_data_lake/run-mongohouse-local.sh
236+
bash .evergreen/atlas_data_lake/run-mongohouse-image.sh
238237
test mongohouse:
239238
- command: shell.exec
240239
type: test
@@ -14419,7 +14418,7 @@ buildvariants:
1441914418
- .test-aws .latest
1442014419
- name: mongohouse
1442114420
display_name: Mongohouse Test
14422-
run_on: ubuntu1804-test
14421+
run_on: ubuntu2204-small
1442314422
tasks:
1442414423
- debug-compile-sasl-openssl
1442514424
- test-mongohouse

.evergreen/legacy_config_generator/evergreen_config_lib/functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,15 @@
162162
shell_exec(r'''
163163
cd drivers-evergreen-tools
164164
export DRIVERS_TOOLS=$(pwd)
165-
bash .evergreen/atlas_data_lake/build-mongohouse-local.sh
165+
bash .evergreen/atlas_data_lake/pull-mongohouse-image.sh
166166
'''),
167167
)),
168168
('run mongohouse', Function(
169169
shell_exec(r'''
170170
cd drivers-evergreen-tools
171171
export DRIVERS_TOOLS=$(pwd)
172-
bash .evergreen/atlas_data_lake/run-mongohouse-local.sh
173-
''', background=True),
172+
bash .evergreen/atlas_data_lake/run-mongohouse-image.sh
173+
'''),
174174
)),
175175
('test mongohouse', Function(
176176
shell_mongoc(r'''

.evergreen/legacy_config_generator/evergreen_config_lib/variants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def days(n: int) -> int:
446446
],
447447
{"CC": "clang"},
448448
),
449-
Variant("mongohouse", "Mongohouse Test", "ubuntu1804-test", ["debug-compile-sasl-openssl", "test-mongohouse"], {}),
449+
Variant("mongohouse", "Mongohouse Test", "ubuntu2204-small", ["debug-compile-sasl-openssl", "test-mongohouse"], {}),
450450
Variant(
451451
"ocsp",
452452
"OCSP tests",

0 commit comments

Comments
 (0)