diff options
author | Rui Zhang <rui.zhang@mongodb.com> | 2015-08-17 14:59:26 -0700 |
---|---|---|
committer | Rui Zhang <rui.zhang@mongodb.com> | 2015-08-17 14:59:26 -0700 |
commit | 3283e2715a08198fc6ca00dfdf459b66e843488a (patch) | |
tree | 6a8aecdf9616e8061fd5c6d32ac0369c0eeb7742 /etc | |
parent | 5be3721da7af1fc5258e9f1753e51324cdd83092 (diff) | |
download | mongo-3283e2715a08198fc6ca00dfdf459b66e843488a.tar.gz |
SERVER-19952 system-perf shall build mongos as well
Diffstat (limited to 'etc')
-rw-r--r-- | etc/system_perf.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/system_perf.yml b/etc/system_perf.yml index 710f6373edf..846197e6a34 100644 --- a/etc/system_perf.yml +++ b/etc/system_perf.yml @@ -185,13 +185,15 @@ tasks: script: | set -o errexit set -o verbose - ${scons|scons} ${compile_flags|} mongo mongod + ${scons|scons} ${compile_flags|} mongo mongod mongos # strip binaries here strip mongo strip mongod + strip mongos mkdir -p mongodb/bin mv mongo mongodb/bin mv mongod mongodb/bin + mv mongos mongodb/bin tar cvf mongodb.tar mongodb gzip mongodb.tar - command: s3.put |