Skip to content

Commit fc3602f

Browse files
authored
Replace SSH git clone commands with HTTPS equivalents (#1579)
1 parent f2de534 commit fc3602f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.evergreen/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ variables:
3636
set -o verbose
3737
3838
cmake -DENABLE_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=mongoc -DENABLE_AUTOMATIC_INIT_AND_CLEANUP=OFF . && make -j8 && make install
39-
git clone git@github.com:mongodb/mongo-c-driver-performance.git
39+
git clone https://github.com/mongodb/mongo-c-driver-performance.git
4040
cd mongo-c-driver-performance
4141
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=../mongoc . && make -j8
4242

.evergreen/config_generator/components/funcs/fetch_det.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class FetchDET(Function):
1212
command_type=EvgCommandType.SETUP,
1313
script='''\
1414
if [[ ! -d drivers-evergreen-tools ]]; then
15-
git clone --depth=1 git@github.com:mongodb-labs/drivers-evergreen-tools.git
15+
git clone --depth=1 https://github.com/mongodb-labs/drivers-evergreen-tools.git
1616
fi
1717
''',
1818
),

.evergreen/generated_configs/functions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ functions:
181181
- -c
182182
- |
183183
if [[ ! -d drivers-evergreen-tools ]]; then
184-
git clone --depth=1 git@github.com:mongodb-labs/drivers-evergreen-tools.git
184+
git clone --depth=1 https://github.com/mongodb-labs/drivers-evergreen-tools.git
185185
fi
186186
- command: subprocess.exec
187187
type: setup

.evergreen/scripts/integration-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ case "$OS" in
110110
venvcreate "${PYTHON3_BINARY}" venv
111111
cd venv
112112
rm -rf mongo-orchestration
113-
git clone --depth 1 git@github.com:10gen/mongo-orchestration.git
113+
git clone --depth 1 https://github.com/10gen/mongo-orchestration.git
114114
cd mongo-orchestration
115115
python -m pip install .
116116
cd ../..
@@ -123,7 +123,7 @@ case "$OS" in
123123
cd venv
124124
rm -rf mongo-orchestration
125125
# Make sure MO is running latest version
126-
git clone --depth 1 git@github.com:10gen/mongo-orchestration.git
126+
git clone --depth 1 https://github.com/10gen/mongo-orchestration.git
127127
cd mongo-orchestration
128128
# Our zSeries machines are static-provisioned, cache corruptions persist.
129129
if [ $(uname -m) = "s390x" ]; then

0 commit comments

Comments
 (0)