diff options
Diffstat (limited to 'etc/evergreen.yml')
-rw-r--r-- | etc/evergreen.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index 16314602f7a..dfd4be2471e 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -471,10 +471,13 @@ tasks: mv mongodb-*-debugsymbols.${ext|tgz} mongo-debugsymbols.tgz || true mv mongodb-*.${ext|tgz} mongodb-binaries.tgz - # If strip is on the path (everywhere except windows) then we should strip the unit test binaries + # If strip is on the path (everywhere except windows) then we should strip the test binaries # before tarring them up if [ -x ${strip_path|/usr/bin/strip} ]; then cat build/unittests.txt | xargs ${strip_command|/usr/bin/strip} + cat build/integration_tests.txt | xargs ${strip_command|/usr/bin/strip} + ${strip_command|/usr/bin/strip} dbtest + ${strip_command|/usr/bin/strip} mongobridge fi # On windows we need to make sure the paths in unittests.txt are compatible with cygwin tar |