Skip to content

Commit e1ceead

Browse files
asdf
1 parent 9c8684f commit e1ceead

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1652,6 +1652,7 @@ tasks:
16521652
- {key: AUTH, value: auth}
16531653
- {key: CLIENT_ENCRYPTION, value: 'true'}
16541654
- {key: TEST_CSFLE, value: 'true'}
1655+
- {key: MONGODB_BINARIES, value: '${PROJECT_DIRECTORY}/mongodb/bin'}
16551656
- func: install dependencies
16561657
- func: bootstrap mongo-orchestration
16571658
- func: bootstrap kms servers

.evergreen/generate_evergreen_tasks.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ TASKS.push({
285285
TOPOLOGY: 'replica_set',
286286
AUTH: 'auth',
287287
CLIENT_ENCRYPTION: 'true',
288-
TEST_CSFLE: 'true'
288+
TEST_CSFLE: 'true',
289+
MONGODB_BINARIES: '${PROJECT_DIRECTORY}/mongodb/bin'
289290
}),
290291
{ func: 'install dependencies' },
291292
{ func: 'bootstrap mongo-orchestration' },

etc/docker.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ build_and_test_glibc() {
7474

7575
docker buildx create --name builder --bootstrap --use
7676

77-
bash $DRIVERS_TOOLS/.evergreen/secrets_handling/setup-secrets.sh drivers/csfle
77+
bash .evergreen/setup-fle.sh
78+
79+
./mongodb/bin/mongocryptd --fork --port 3000 --pidfilepath $(pwd)/pid.file --logpath $(pwd)/logpath
7880

7981
BASE_TAG=$LINUX_ARCH-alpine-base-node-$NODE_VERSION
8082
docker --debug buildx build --load --progress=plain \

start-cluster.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
#! /bin/bash
22

3-
cd ~/dev/node-mongodb-native
3+
# cd ~/dev/node-mongodb-native
44
export MONGODB_VERSION=latest
55
export AUTH=auth
6-
# export MONGODB_BINARIES=$DRIVERS_TOOLS/mongodb/bin
6+
export MONGODB_BINARIES=/Users/bailey.pearson/dev/node-mongodb-native/mongodb/bin
77
export MONGO_ORCHESTRATION_HOME=/Users/bailey.pearson/dev/drivers-evergreen-tools/.evergreen/orchestration
88
# export PROJECT_ORCHESTRATION_HOME=$DRIVERS_TOOLS/.evergreen/orchestration
99
# export REQUIRE_API_VERSION='1'
1010
# export MONGODB_API_VERSION='1'
11-
# export TOPOLOGY=replica_set
12-
export TOPOLOGY=sharded_cluster
11+
export TOPOLOGY=replica_set
12+
# export TOPOLOGY=sharded_cluster
1313
# export TOPOLOGY=server
1414
# export SSL=nossl
1515

1616
# export ORCHESTRATION_FILE='auth-aws.json'
1717

18-
export LOAD_BALANCER=true
18+
# export LOAD_BALANCER=true
1919

2020
cd $DRIVERS_TOOLS
2121
rm -rf mongosh mongodb mo
@@ -44,4 +44,4 @@ EOM
4444
node --eval "$SOURCE_SCRIPT" | tee expansions.sh
4545
source expansions.sh
4646

47-
bash ${DRIVERS_TOOLS}/.evergreen/run-load-balancer.sh start
47+
# bash ${DRIVERS_TOOLS}/.evergreen/run-load-balancer.sh start

0 commit comments

Comments
 (0)