summaryrefslogtreecommitdiff
path: root/src/mongo/installer/msi
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2019-02-11 17:55:50 -0500
committerAndrew Morrow <acm@mongodb.com>2019-02-12 13:29:30 -0500
commit87881b0424d3706f57efa14b26729c9b5a7a0d4d (patch)
treef1453fcf10ba780a697d3618aa82cdcf99dbd68d /src/mongo/installer/msi
parent243681be39bc3e4558cf178f6072dc51404f5d92 (diff)
downloadmongo-87881b0424d3706f57efa14b26729c9b5a7a0d4d.tar.gz
SERVER-39483 Tag large build artifacts as non-cacheable
Diffstat (limited to 'src/mongo/installer/msi')
-rw-r--r--src/mongo/installer/msi/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/installer/msi/SConscript b/src/mongo/installer/msi/SConscript
index 642f2b8e172..6d989b2ac36 100644
--- a/src/mongo/installer/msi/SConscript
+++ b/src/mongo/installer/msi/SConscript
@@ -197,6 +197,7 @@ pre_msi_cmd = env.Command(pre_msi,
' -ext "$WIXUIEXT"'
' -ext "$WIXUTILEXT"'
' ${SOURCES}')
+env.NoCache(pre_msi_cmd)
# Generated Dependencies
env.Depends(pre_msi_cmd, '$BUILD_DIR/mongo/mongo.exe')
@@ -217,5 +218,6 @@ env.Command(msi,
pre_msi,
r'$PYTHON buildscripts\msitrim.py ${SOURCES} ${TARGET}')
env.AlwaysBuild(msi)
+env.NoCache(msi)
env.Alias( "msi" , msi )