Skip to content

Commit

Permalink
Setup to allow lucid images to build in internal environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Dong committed Dec 10, 2024
1 parent 5b2dfcc commit 63a4379
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 2 additions & 0 deletions container/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_files")
load("//:jvm_flags.bzl", "server_jvm_flags", "worker_jvm_flags")
load("//container:defs.bzl", "multiarch_oci_image", "oci_image_env")

package(default_visibility = ["//visibility:public"])

# == Docker Image Creation ==
# When deploying buildfarm, you may want to include additional dependencies within your deployment.
# These dependencies can enable features related to the observability and runtime of the system.
Expand Down
10 changes: 2 additions & 8 deletions third_party/BUILD.skip_sleep
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ package(default_visibility = ["//visibility:public"])

cc_binary(
name = "skip_sleep",
srcs = select({
"@//config:windows": ["tardis-windows.c"],
"@//conditions:default": ["tardis.c"],
}),
srcs = ["tardis.c"],
target_compatible_with = [
"@platforms//cpu:x86_64", # Avoid ARM/aarch64
],
Expand All @@ -16,10 +13,7 @@ cc_binary(

cc_binary(
name = "skip_sleep_preload",
srcs = select({
"@//config:windows": ["novdso-windows.c"],
"@//conditions:default": ["novdso.c"],
}),
srcs = ["novdso.c"],
target_compatible_with = [
"@platforms//cpu:x86_64", # Avoid ARM/aarch64
],
Expand Down

0 comments on commit 63a4379

Please sign in to comment.