This commit is contained in:
VerstreuteSeele
2022-12-19 17:45:02 +01:00
parent 6dbe0de18d
commit 383752072d
12 changed files with 182 additions and 65 deletions
+1
View File
@@ -167,6 +167,7 @@ def prepare_app_metadata(target, source, env):
sdk_cache = SdkCache(env["SDK_DEFINITION"].path, load_version_only=True)
if not sdk_cache.is_buildable():
print(target, source, env)
raise UserError(
"SDK version is not finalized, please review changes and re-run operation"
)
+1 -3
View File
@@ -219,9 +219,7 @@ def gen_sdk_data(sdk_cache: SdkCache):
def _check_sdk_is_up2date(sdk_cache: SdkCache):
if not sdk_cache.is_buildable():
raise UserError(
"SDK version is not finalized, please review changes and re-run operation"
)
print("Working with WIP SDK. Expect failures")
def validate_sdk_cache(source, target, env):
+1 -1
View File
@@ -24,7 +24,7 @@ def flp_serial_by_name(flp_name):
return ""
UPDATE_TIMEOUT = 30
UPDATE_TIMEOUT = 60
def main():