* enable sparseCheckout, moving github actions from docker to raw shell * fix missing known_hosts while setting ssh priv key * fix build.yml * add ssh key to upload just in time * fixing rsync syntax * fix build.yml * try to fix build.yml again * testing rsync * test rsync again * add linters * add Black Python linter to submodules * add Black submodule * add working python linter target, dirty file list * up toolchain to version 4 * up toolchain to ver 5 * up toolchain version to 6 * fbt: using black 22.6.0 * remove Black submodule, up toolchain to ver 7 * fbt: added lint_py, format_py targets * add pvs_studio workflow * fix pvs_studio segfault * fix pvs_studio command * fix pvs_studio command 2 * show env before run pvs_studio * try to debug pvs_studio * try to strace pvs_studio.. * Add FBT_TOOLCHAIN_PATH, MacOS Rosseta check, and ignore non-x86_64 linux architectures * prevent redownloading toolchain on github-runners * fix toolchain download exitcode * add strace to debug pvs_studio segfault * disable strace to catch full code dump * Add './fbt cli' target to access Flipper CLI via PySerial * remove pvs_studio from this PR * removing clang-format from toolchain due errors * make source easy, and fix some mistakes found by @hedger * Add check_submodules workflow, some fixes * fixing mistakes Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com>
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from SCons.Builder import Builder
 | 
						|
from SCons.Action import Action
 | 
						|
from SCons.Warnings import warn, WarningOnByDefault
 | 
						|
import SCons
 | 
						|
import os.path
 | 
						|
 | 
						|
from fbt.appmanifest import (
 | 
						|
    FlipperAppType,
 | 
						|
    AppManager,
 | 
						|
    ApplicationsCGenerator,
 | 
						|
    FlipperManifestException,
 | 
						|
)
 | 
						|
 | 
						|
# Adding objects for application management to env
 | 
						|
#  AppManager env["APPMGR"] - loads all manifests; manages list of known apps
 | 
						|
#  AppBuildset env["APPBUILD"] - contains subset of apps, filtered for current config
 | 
						|
 | 
						|
 | 
						|
def LoadApplicationManifests(env):
 | 
						|
    appmgr = env["APPMGR"] = AppManager()
 | 
						|
    for entry in env.Glob("#/applications/*", ondisk=True, source=True):
 | 
						|
        if isinstance(entry, SCons.Node.FS.Dir) and not str(entry).startswith("."):
 | 
						|
            try:
 | 
						|
                app_manifest_file_path = os.path.join(entry.abspath, "application.fam")
 | 
						|
                appmgr.load_manifest(app_manifest_file_path, entry.name)
 | 
						|
                env.Append(PY_LINT_SOURCES=[app_manifest_file_path])
 | 
						|
            except FlipperManifestException as e:
 | 
						|
                warn(WarningOnByDefault, str(e))
 | 
						|
 | 
						|
 | 
						|
def PrepareApplicationsBuild(env):
 | 
						|
    env["APPBUILD"] = env["APPMGR"].filter_apps(env["APPS"])
 | 
						|
    env["APPBUILD_DUMP"] = env.Action(
 | 
						|
        DumpApplicationConfig,
 | 
						|
        "\tINFO\t",
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
def DumpApplicationConfig(target, source, env):
 | 
						|
    print(f"Loaded {len(env['APPMGR'].known_apps)} app definitions.")
 | 
						|
    print("Firmware modules configuration:")
 | 
						|
    for apptype in FlipperAppType:
 | 
						|
        app_sublist = env["APPBUILD"].get_apps_of_type(apptype)
 | 
						|
        if app_sublist:
 | 
						|
            print(
 | 
						|
                f"{apptype.value}:\n\t",
 | 
						|
                ", ".join(app.appid for app in app_sublist),
 | 
						|
            )
 | 
						|
 | 
						|
 | 
						|
def build_apps_c(target, source, env):
 | 
						|
    target_file_name = target[0].path
 | 
						|
 | 
						|
    gen = ApplicationsCGenerator(env["APPBUILD"])
 | 
						|
    with open(target_file_name, "w") as file:
 | 
						|
        file.write(gen.generate())
 | 
						|
 | 
						|
 | 
						|
def generate(env):
 | 
						|
    env.AddMethod(LoadApplicationManifests)
 | 
						|
    env.AddMethod(PrepareApplicationsBuild)
 | 
						|
 | 
						|
    env.Append(
 | 
						|
        BUILDERS={
 | 
						|
            "ApplicationsC": Builder(
 | 
						|
                action=Action(
 | 
						|
                    build_apps_c,
 | 
						|
                    "${APPSCOMSTR}",
 | 
						|
                ),
 | 
						|
                suffix=".c",
 | 
						|
            ),
 | 
						|
        }
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
def exists(env):
 | 
						|
    return True
 |