aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/createDistPackage.py
Commit message (Collapse)AuthorAgeFilesLines
* Packaging: Restrict 7zip to 2 threadsEike Ziller2019-04-121-1/+1
| | | | | | | | Otherwise can create out-of-memory situations on 32bit machines with many cores. Change-Id: I7cc862d30079ff0fb11a3c088ae38d73afce4b1e Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* reduce compression rate to save some RAMTim Jenssen2018-11-131-1/+1
| | | | | Change-Id: Icc124948a5223294e90fa27b7c4cf5924bdab5e2 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Fix code signature on macOSEike Ziller2018-05-141-1/+6
| | | | | | | | | | We build packages with extra debug info, but sign the application before removing the debug info for the release package. We have to codesign (potentially again) between copying and packaging. Task-number: QTCREATORBUG-20370 Change-Id: I5549ca5045eb995e5a61794473c2d0180b778711 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Filter debug info out when creating macOS disk imageEike Ziller2018-01-231-16/+1
| | | | | | | Move the script to Python for that, for code sharing Change-Id: I1a0b1ed7fe3ed4413045d478c82621d75800520e Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
* Fix copying of symlinks when creating packageEike Ziller2018-01-171-1/+1
| | | | | | | Another fixup of fd54a377fed0e925678c6572b786ae371cd64aef Change-Id: Ica9635f37a98eba7277517c70ae59409ca71f176 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Add make target for creating packages with debug infoEike Ziller2018-01-151-0/+76
Add a script that creates either a release binary package, or a package with debug info, from a Qt Creator build with CONFIG+=force_debug_info CONFIG+=separate_debug_info Run "make bindist_installer" for the release package and "make bindist_debug" for the package with only debug info. First step for QTCREATORBUG-13002 Change-Id: I9d45db7f41f4af956221f6feb7c4e8ca7154892e Reviewed-by: Iikka Eklund <iikka.eklund@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>