buildbot:
- Remove packed to buildbot_archive.zip archive file to keep scons install directory as clean as possible (if i understood correct, this file isn't actually needed in the future, so we could remove it just after packing rather than cleaning install directory before packing as it's done for cmake) - No need in scripts installation for linux slaves when preparing archive
This commit is contained in:
@@ -47,7 +47,8 @@ if builder.find('scons') != -1:
|
||||
|
||||
scons_options += ['WITH_BF_NOBLENDER=True', 'WITH_BF_PLAYER=False',
|
||||
'BF_BUILDDIR=' + build_dir,
|
||||
'BF_INSTALLDIR=' + install_dir]
|
||||
'BF_INSTALLDIR=' + install_dir,
|
||||
'WITHOUT_BF_INSTALL=True']
|
||||
|
||||
config = None
|
||||
|
||||
|
@@ -530,6 +530,8 @@ def buildbot_zip(src, dest, package_name, extension):
|
||||
print("writing %s to %s" % (dest, bb_zip_name))
|
||||
bb_zip.write(dest, os.path.split(dest)[1])
|
||||
bb_zip.close()
|
||||
print("removing unneeded packed file %s (to keep install directory clean)" % (dest))
|
||||
os.remove(dest)
|
||||
print("done.")
|
||||
|
||||
def buildslave_print(target, source, env):
|
||||
|
Reference in New Issue
Block a user