File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ tasks:
482
482
- func : bootstrap
483
483
vars :
484
484
scope : ' compass-e2e-tests'
485
+ - func : get-compass-mongodb-com
485
486
- func : smoketest-packaged-app
486
487
vars :
487
488
mongodb_version : latest-enterprise
Original file line number Diff line number Diff line change @@ -498,6 +498,7 @@ tasks:
498
498
- func : bootstrap
499
499
vars :
500
500
scope : compass-e2e-tests
501
+ - func : get-compass-mongodb-com
501
502
- func : smoketest-packaged-app
502
503
vars :
503
504
mongodb_version : latest-enterprise
Original file line number Diff line number Diff line change @@ -651,6 +651,28 @@ functions:
651
651
652
652
npm run --unsafe-perm --workspace compass-e2e-tests test-packaged-ci
653
653
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 : compass-mongodb-com
663
+ shell : bash
664
+ script : |
665
+ set -e
666
+ echo "Using node version:";
667
+ node -v;
668
+ echo "Using npm version:";
669
+ npm -v;
670
+ echo "Using gcc version:"
671
+ gcc --version;
672
+ echo "Using g++ version:"
673
+ g++ --version;
674
+ npm ci --engine-strict=false
675
+
654
676
smoketest-packaged-app :
655
677
- command : shell.exec
656
678
# Fail the task if it's idle for 10 mins
You can’t perform that action at this time.
0 commit comments