Example #1
0
def get_tar_bz_archive(app_name: str, url: str, digest: str):
    build_in_tmp_directory(app_name, digest,
                           partial(_get_tar_archive, url, digest, "-xjf"))
Example #2
0
def build(name, repo, commit):
    build_in_tmp_directory(
        name,
        commit,
        partial(_build, name, repo, commit)
    )
Example #3
0
def get_zip_archive(app_name: str, url: str, digest: str):
    build_in_tmp_directory(app_name, digest,
                           partial(_get_zip_archive, url, digest))