Update preference sandbox logic.

Release/RC version: no sandbox
Testing releases (tagged prerelease version): -test
Development builds: -branchname (if at the head of a branch)
                    -(commitid) (if in a headless state)

And in the unlikely event someone tries to build a non-release version
from a tarball instead of git, its sandbox will be "-unreleased".
This commit is contained in:
sawinglogz 2020-01-17 15:59:29 -05:00
parent f7502d6369
commit 796f4659ab

View File

@ -34,16 +34,31 @@ QString getPrereleaseSuffix()
{
QString suffix;
// Append branch if there is a branch specified
if (GIT_BRANCH != "master") {
suffix += "-" GIT_BRANCH;
}
// Append "-test" if not release or release candidate
else if (getVersion().IsReleaseVersion() == false) {
if (getVersion().PrereleaseType().compare("rc") != 0) {
suffix += "-test";
}
if (getVersion().IsReleaseVersion() || getVersion().PrereleaseType().compare("rc") == 0) {
// No suffix for release or rc versions.
suffix = "";
} else {
#ifdef GIT_TAG
// If this commit has a tag, then it's a full testing (alpha/beta/etc.) release.
// Put preferences/data in "-test".
suffix = "-test";
#else
// Otherwise it's a development build, which will be identified by its branch in most cases.
#ifdef GIT_BRANCH
suffix = "-" GIT_BRANCH;
#elif GIT_REVISION
// If we've checked out an older version, we're in a headless state and not on any branch.
// If the older version was a previous testing release, it should be tagged, in which case
// it's treated as a testing release above.
//
// Otherwise this is probably being used for regression testing an older build.
suffix = "-" GIT_REVISION;
#else
// In theory someone might try to build a prerelease from a tarball, so we don't have any
// revision information. Just put it in an "-unreleased" sandbox.
suffix = "-unreleased";
#endif
#endif
}
return suffix;