forked from qt-creator/qt-creator
RemoteLinux: Remove CheckForFreeDiskSpaceStep
This step was of very little use out of the box, as it required the user to pass sensible values for e.g. the required disk space. Making it smart enough would require non-trivial effort for very little gain, in particular as the concept hardly makes any sense at all in conjunction with deployment via rsync. Fixes: QTCREATORBUG-27081 Change-Id: I586fceb59947334eba19b10fcc94ecedc661908f Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -131,6 +131,11 @@ bool BuildStepList::fromMap(const QVariantMap &map)
|
||||
}
|
||||
bool handled = false;
|
||||
Utils::Id stepId = idFromMap(bsData);
|
||||
|
||||
// pre-8.0 compat
|
||||
if (stepId == "RemoteLinux.CheckForFreeDiskSpaceStep")
|
||||
continue;
|
||||
|
||||
for (BuildStepFactory *factory : factories) {
|
||||
if (factory->stepId() == stepId) {
|
||||
if (factory->canHandle(this)) {
|
||||
|
||||
Reference in New Issue
Block a user