forked from aws/aws-lambda-builders
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathworkflow.py
37 lines (29 loc) · 1.36 KB
/
workflow.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
Rust Cargo Workflow
"""
import platform
from aws_lambda_builders.path_resolver import PathResolver
from aws_lambda_builders.workflow import BaseWorkflow, Capability
from .actions import BuildAction, CopyAndRenameAction
class RustCargoWorkflow(BaseWorkflow):
NAME = "RustCargoBuilder"
CAPABILITY = Capability(language="rust", dependency_manager="cargo", application_framework=None)
SUPPORTED_MANIFESTS = ["Cargo.toml"]
def __init__(self, source_dir, artifacts_dir, scratch_dir, manifest_path, runtime=None, mode=None, **kwargs):
super(RustCargoWorkflow, self).__init__(
source_dir, artifacts_dir, scratch_dir, manifest_path, runtime=runtime, **kwargs
)
# we utilize the handler identifier to
# select the binary to build
options = kwargs.get("options") or {}
handler = options.get("artifact_executable_name", None)
system_platform = platform.system().lower()
self.actions = [
BuildAction(source_dir, handler, self.binaries, system_platform, mode),
CopyAndRenameAction(source_dir, handler, artifacts_dir, system_platform, mode),
]
def get_resolvers(self):
"""
specialized path resolver that just returns the list of executable for the runtime on the path.
"""
return [PathResolver(runtime=self.runtime, binary="cargo")]