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:
Christian Kandeler
2022-06-15 15:50:44 +02:00
parent 2dc343970b
commit ebfbc55166
11 changed files with 5 additions and 212 deletions

View File

@@ -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)) {