Skip to content

Commit 805fcf4

Browse files
committed
clone compass-mongodb-com and install it
1 parent 77dc547 commit 805fcf4

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,30 @@ functions:
651651
652652
npm run --unsafe-perm --workspace compass-e2e-tests test-packaged-ci
653653
654+
get-compass-mongodb-com:
655+
- command: git.get_project
656+
type: system
657+
params:
658+
directory: compass-mongodb-com
659+
- command: shell.exec
660+
type: setup
661+
params:
662+
working_dir: src
663+
shell: bash
664+
script: |
665+
set -e
666+
667+
echo "Using node version:";
668+
node -v;
669+
echo "Using npm version:";
670+
npm -v;
671+
echo "Using gcc version:"
672+
gcc --version;
673+
echo "Using g++ version:"
674+
g++ --version;
675+
676+
npm i
677+
654678
smoketest-packaged-app:
655679
- command: shell.exec
656680
# Fail the task if it's idle for 10 mins

0 commit comments

Comments
 (0)