migrating to rbe_preconfig (#952)
This commit is contained in:
parent
52edc1c70d
commit
c65e8cfbaa
|
@ -14,16 +14,6 @@ load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
|
|||
|
||||
bazel_skylib_workspace()
|
||||
|
||||
http_archive(
|
||||
name = "bazel_toolchains",
|
||||
sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
|
||||
strip_prefix = "bazel-toolchains-4.1.0",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
load("@rules_python//python:repositories.bzl", "python_register_toolchains")
|
||||
|
||||
python_register_toolchains(
|
||||
|
@ -31,9 +21,19 @@ python_register_toolchains(
|
|||
python_version = "3.9",
|
||||
)
|
||||
|
||||
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
||||
http_archive(
|
||||
name = "bazelci_rules",
|
||||
sha256 = "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
|
||||
strip_prefix = "bazelci_rules-1.0.0",
|
||||
url = "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
|
||||
)
|
||||
|
||||
load("@bazelci_rules//:rbe_repo.bzl", "rbe_preconfig")
|
||||
|
||||
# Creates a default toolchain config for RBE.
|
||||
# Use this as is if you are using the rbe_ubuntu16_04 container,
|
||||
# otherwise refer to RBE docs.
|
||||
rbe_autoconfig(name = "buildkite_config")
|
||||
rbe_preconfig(
|
||||
name = "buildkite_config",
|
||||
toolchain = "ubuntu1804-bazel-java11",
|
||||
)
|
||||
|
|
|
@ -42,21 +42,21 @@ examples_third_party_setup()
|
|||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
|
||||
http_archive(
|
||||
name = "bazel_toolchains",
|
||||
sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
|
||||
strip_prefix = "bazel-toolchains-4.1.0",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
],
|
||||
name = "bazelci_rules",
|
||||
sha256 = "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
|
||||
strip_prefix = "bazelci_rules-1.0.0",
|
||||
url = "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
|
||||
)
|
||||
|
||||
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
||||
load("@bazelci_rules//:rbe_repo.bzl", "rbe_preconfig")
|
||||
|
||||
# Creates a default toolchain config for RBE.
|
||||
# Use this as is if you are using the rbe_ubuntu16_04 container,
|
||||
# otherwise refer to RBE docs.
|
||||
rbe_autoconfig(name = "buildkite_config")
|
||||
rbe_preconfig(
|
||||
name = "buildkite_config",
|
||||
toolchain = "ubuntu1804-bazel-java11",
|
||||
)
|
||||
|
||||
http_archive(
|
||||
name = "build_bazel_rules_apple",
|
||||
|
|
|
@ -35,18 +35,18 @@ filegroup(
|
|||
)
|
||||
|
||||
http_archive(
|
||||
name = "bazel_toolchains",
|
||||
sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
|
||||
strip_prefix = "bazel-toolchains-4.1.0",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
],
|
||||
name = "bazelci_rules",
|
||||
sha256 = "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
|
||||
strip_prefix = "bazelci_rules-1.0.0",
|
||||
url = "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
|
||||
)
|
||||
|
||||
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
||||
load("@bazelci_rules//:rbe_repo.bzl", "rbe_preconfig")
|
||||
|
||||
# Creates a default toolchain config for RBE.
|
||||
# Use this as is if you are using the rbe_ubuntu16_04 container,
|
||||
# otherwise refer to RBE docs.
|
||||
rbe_autoconfig(name = "buildkite_config")
|
||||
rbe_preconfig(
|
||||
name = "buildkite_config",
|
||||
toolchain = "ubuntu1804-bazel-java11",
|
||||
)
|
||||
|
|
|
@ -12,18 +12,18 @@ rules_foreign_cc_dependencies()
|
|||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
|
||||
http_archive(
|
||||
name = "bazel_toolchains",
|
||||
sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
|
||||
strip_prefix = "bazel-toolchains-4.1.0",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
|
||||
],
|
||||
name = "bazelci_rules",
|
||||
sha256 = "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
|
||||
strip_prefix = "bazelci_rules-1.0.0",
|
||||
url = "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
|
||||
)
|
||||
|
||||
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
||||
load("@bazelci_rules//:rbe_repo.bzl", "rbe_preconfig")
|
||||
|
||||
# Creates a default toolchain config for RBE.
|
||||
# Use this as is if you are using the rbe_ubuntu16_04 container,
|
||||
# otherwise refer to RBE docs.
|
||||
rbe_autoconfig(name = "buildkite_config")
|
||||
rbe_preconfig(
|
||||
name = "buildkite_config",
|
||||
toolchain = "ubuntu1804-bazel-java11",
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue