Skip to content

Commit b69b265

Browse files
committed
clone compass-mongodb-com and install it
1 parent 1d2c976 commit b69b265

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.evergreen/buildvariants-and-tasks.in.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ tasks:
482482
- func: bootstrap
483483
vars:
484484
scope: 'compass-e2e-tests'
485+
- func: get-compass-mongodb-com
485486
- func: smoketest-packaged-app
486487
vars:
487488
mongodb_version: latest-enterprise

.evergreen/buildvariants-and-tasks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ tasks:
498498
- func: bootstrap
499499
vars:
500500
scope: compass-e2e-tests
501+
- func: get-compass-mongodb-com
501502
- func: smoketest-packaged-app
502503
vars:
503504
mongodb_version: latest-enterprise

.evergreen/functions.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,28 @@ functions:
659659
660660
npm run --unsafe-perm --workspace compass-e2e-tests test-packaged-ci
661661
662+
get-compass-mongodb-com:
663+
- command: git.get_project
664+
type: system
665+
params:
666+
directory: compass-mongodb-com
667+
- command: shell.exec
668+
type: setup
669+
params:
670+
working_dir: compass-mongodb-com
671+
shell: bash
672+
script: |
673+
set -e
674+
echo "Using node version:";
675+
node -v;
676+
echo "Using npm version:";
677+
npm -v;
678+
echo "Using gcc version:"
679+
gcc --version;
680+
echo "Using g++ version:"
681+
g++ --version;
682+
npm ci --engine-strict=false
683+
662684
smoketest-packaged-app:
663685
- command: shell.exec
664686
# Fail the task if it's idle for 10 mins

0 commit comments

Comments
 (0)