Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support riscv64 #1268

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@ STATIC = {
"{REGISTRY}/{PROJECT_ID}/static-debian11:{COMMIT_SHA}": "//base:static_root_amd64_debian11",
}

# Static-only architectures to reduce impact on overall build
STATIC_ARCHITECTURES = ARCHITECTURES + [
"riscv64",
]

STATIC |= {
"{REGISTRY}/{PROJECT_ID}/static:" + tag_base + "-" + arch: "//base:" + label + "_" + user + "_" + arch + "_debian11"
for arch in ARCHITECTURES
for arch in STATIC_ARCHITECTURES
for (tag_base, label, user) in STATIC_VARIANTS
}

Expand All @@ -31,7 +36,7 @@ STATIC |= {

STATIC |= {
"{REGISTRY}/{PROJECT_ID}/static-" + distro + ":" + tag_base + "-" + arch: "//base:" + label + "_" + user + "_" + arch + "_" + distro
for arch in ARCHITECTURES
for arch in STATIC_ARCHITECTURES
for (tag_base, label, user) in STATIC_VARIANTS
for distro in DISTROS
}
Expand Down