-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathrust.py
125 lines (101 loc) · 3.45 KB
/
rust.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
from functools import cache
from os import environ
import platform
import shutil
from typing import Dict, List, Optional
from util import info, isDarwin, isLinux, isMusl, run_cmd_output, warn, Variant
from datetime import datetime, timezone
@cache
def build_hash() -> str:
if environ.get("CODEBUILD_RESOLVED_SOURCE_VERSION") is not None:
build_hash = environ["CODEBUILD_RESOLVED_SOURCE_VERSION"]
else:
try:
build_hash = run_cmd_output(["git", "rev-parse", "HEAD"]).strip()
except Exception as e:
warn("Failed to get build hash:", e)
build_hash = "unknown"
info("build_hash =", build_hash)
return build_hash
@cache
def build_datetime() -> str:
build_time = datetime.now(timezone.utc).isoformat()
info("build_time =", build_time)
return build_time
@cache
def skip_fish_tests() -> bool:
skip_fish_tests = shutil.which("fish") is None
if skip_fish_tests:
warn("Skipping fish tests")
return skip_fish_tests
@cache
def cargo_cmd_name() -> str:
if isMusl():
return "cross"
else:
return "cargo"
def rust_env(release: bool, variant: Optional[Variant] = None, linker=None) -> Dict[str, str]:
env = {
"CARGO_NET_GIT_FETCH_WITH_CLI": "true",
}
if release:
rustflags = [
"-C force-frame-pointers=yes",
]
if linker:
rustflags.append(f"-C link-arg=-fuse-ld={linker}")
if isLinux():
rustflags.append("-C link-arg=-Wl,--compress-debug-sections=zlib")
env["CARGO_INCREMENTAL"] = "0"
env["CARGO_PROFILE_RELEASE_LTO"] = "thin"
env["RUSTFLAGS"] = " ".join(rustflags)
if isDarwin():
env["MACOSX_DEPLOYMENT_TARGET"] = "10.13"
env["AMAZON_Q_BUILD_TARGET_TRIPLE"] = get_target_triple()
env["AMAZON_Q_BUILD_HASH"] = build_hash()
env["AMAZON_Q_BUILD_DATETIME"] = build_datetime()
if variant:
env["AMAZON_Q_BUILD_VARIANT"] = variant.name
# Test related env vars:
env["Q_TELEMETRY_CLIENT_ID"] = "ffffffff-ffff-ffff-ffff-ffffffffffff"
if skip_fish_tests():
env["AMAZON_Q_BUILD_SKIP_FISH_TESTS"] = "1"
return env
def rust_targets() -> List[str]:
"""
Returns the supported rust targets for the current environment.
"""
match platform.system():
case "Darwin":
return ["x86_64-apple-darwin", "aarch64-apple-darwin"]
case "Linux":
return [get_target_triple()]
case other:
raise ValueError(f"Unsupported platform {other}")
@cache
def get_target_triple() -> str:
"""
Returns the target triple to be built and defined in the application manifest.
"""
env = environ.get("AMAZON_Q_BUILD_TARGET_TRIPLE")
if env:
return env
elif isDarwin():
return "universal-apple-darwin"
else:
match (platform.machine(), isMusl()):
case ("x86_64", True):
return "x86_64-unknown-linux-musl"
case ("x86_64", False):
return "x86_64-unknown-linux-gnu"
case ("aarch64", True):
return "aarch64-unknown-linux-musl"
case ("aarch64", False):
return "aarch64-unknown-linux-gnu"
case (other, _):
raise ValueError(f"Unsupported machine {other}")
if __name__ == "__main__":
build_hash()
build_datetime()
info("rust_targets =", rust_targets())
info("get_target_triple =", get_target_triple())