File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ set_env_vars() {
9
9
AUTH=${AUTH:- noauth}
10
10
SSL=${SSL:- nossl}
11
11
MONGODB_URI=${MONGODB_URI:- }
12
- TOPOLOGY=${TOPOLOGY:- server }
12
+ TOPOLOGY=${TOPOLOGY:- standalone }
13
13
DRIVERS_TOOLS=${DRIVERS_TOOLS:- }
14
14
15
15
if [ " $AUTH " != " noauth" ]; then
Original file line number Diff line number Diff line change 4
4
# TODO: Support i18n-fallbacks test
5
5
# TODO: Support app-tests tests
6
6
7
+ # Note on topology: server:
8
+ # The GH actions use mongo-orchestration, which uses a "server" topology for
9
+ # the standalone one. See transform_node! below for the mapping of all
10
+ # topologies.
11
+
7
12
require 'fileutils'
13
+ require 'active_support'
8
14
require 'active_support/dependencies/autoload'
9
15
require 'active_support/core_ext'
10
16
require 'yaml'
@@ -240,7 +246,7 @@ class Transmogrifier
240
246
241
247
def step_mongodb
242
248
{
243
- id : "start-mongodb"
249
+ id : "start-mongodb" ,
244
250
name : "start mongodb" ,
245
251
uses : "mongodb-labs/drivers-evergreen-tools@master" ,
246
252
with : {
You can’t perform that action at this time.
0 commit comments