aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/bld_qtcreator.py
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-02-02 13:42:49 +0100
committerEike Ziller <eike.ziller@qt.io>2018-02-07 08:01:28 +0000
commit206e80a90172e1d2c7ff770ca5eec1647ca55d4b (patch)
treec33c019e121d81ab2a716f016ec398c64c22bf57 /packaging-tools/bld_qtcreator.py
parent494493fd77105b3f9a444cdd8bdef4d56b30ceb9 (diff)
Qt Creator: Save the sha1(s) that were used for building
Creates a summary file containing the SHA1s for the individual repositories. Also create a link from the snapshots base path + job name to the actually built snapshot which is named by display name / version, so the build job configurations can find the SHA1s for a specific job easier. Change-Id: I591a2c441b50023e90a4b530719a4f79ab660ef7 Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'packaging-tools/bld_qtcreator.py')
-rwxr-xr-xpackaging-tools/bld_qtcreator.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging-tools/bld_qtcreator.py b/packaging-tools/bld_qtcreator.py
index 5b71b7c45..b13b9a231 100755
--- a/packaging-tools/bld_qtcreator.py
+++ b/packaging-tools/bld_qtcreator.py
@@ -356,3 +356,7 @@ if __name__ == "__main__":
'--verbose', '-o', os.path.join(qtCreatorBuildDirectory, 'qtcreator_dev.7z'),
qtCreatorTempDevDirectory],
qtCreatorBuildDirectory, callerArguments = callerArguments, init_environment = environment)
+
+ # write information about git sha
+ with open(os.path.join(qtCreatorBuildDirectory, 'qtcreator.7z.git_sha'), 'w') as f:
+ f.write(buildGitSHA)