You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# the output in a file that will be uploaded with rest of the logs
206
206
LS_ALL_STDOUT_FILE="$(npm config get cache)/_logs/$(date -u +"%Y-%m-%dT%H_%M_%SZ")-npm-ls-all.log"
207
207
echo "Validating dependencies with \`npm ls --all\`..."
208
-
(npm ls --all > $LS_ALL_STDOUT_FILE && echo "No mismatched dependency versions") || echo "\nThe \`npm ls\` command failed with mismatched dependencies error. This usually means that the dependency versions listed in package.json are not matching dependencies resolved and recorded in package-lock.json. If you updated package.json files in your PR, inspect the error output and try to re-install offending dependncies to fix the package-lock file."
208
+
(npm ls --all > $LS_ALL_STDOUT_FILE && echo "No mismatched dependency versions") || (echo "\nThe \`npm ls\` command failed with mismatched dependencies error. This usually means that the dependency versions listed in package.json are not matching dependencies resolved and recorded in package-lock.json. If you updated package.json files in your PR, inspect the error output and try to re-install offending dependncies to fix the package-lock file." && exit 1)
209
209
210
210
bootstrap:
211
211
- command: shell.exec
@@ -678,17 +678,17 @@ functions:
678
678
# Load environment variables
679
679
eval $(.evergreen/print-compass-env.sh)
680
680
681
-
#if [[ "$IS_WINDOWS" == "true" ]]; then
681
+
if [[ "$IS_WINDOWS" == "true" ]]; then
682
682
# TODO: windows_setup
683
683
# TODO: windows_msi
684
-
# TODO: windows_zip
685
-
#fi
684
+
npm run --unsafe-perm --workspace @mongodb-js/compass-smoke-tests start -- --package=windows_zip
685
+
fi
686
686
687
687
if [[ "$IS_OSX" == "true" ]]; then
688
688
echo "Disabling clipboard usage in e2e tests (TODO: https://jira.mongodb.org/browse/BUILD-14780)"
689
689
export COMPASS_E2E_DISABLE_CLIPBOARD_USAGE="true"
690
690
npm run --unsafe-perm --workspace @mongodb-js/compass-smoke-tests start -- --package=osx_dmg
691
-
# TODO: osx_zip
691
+
npm run --unsafe-perm --workspace @mongodb-js/compass-smoke-tests start -- --package=osx_zip
692
692
fi
693
693
694
694
#if [[ "$IS_UBUNTU" == "true" ]]; then
@@ -982,37 +982,6 @@ functions:
982
982
echo "Downloading release assets from evergreen bucket..."
983
983
npm run --workspace mongodb-compass download
984
984
985
-
generate-tasks:
986
-
- command: generate.tasks
987
-
params:
988
-
files:
989
-
- tasks.json
990
-
991
-
publish-packages-next:
992
-
- command: shell.exec
993
-
params:
994
-
working_dir: src
995
-
shell: bash
996
-
env:
997
-
<<: *compass-env
998
-
NPM_TOKEN: ${devtoolsbot_npm_token}
999
-
script: |
1000
-
# Only package publish for commits on the main evergreen project.
1001
-
if [[ "${requester}" == "commit" ]] && [[ "${project}" == "10gen-compass-main" ]]; then
0 commit comments