-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
133 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
workspace(name = "rules_foreign_cc") | ||
|
||
load("@bazel_ci_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_preconfig( | ||
name = "buildkite_config", | ||
toolchain = "ubuntu1804-bazel-java11", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "rules_foreign_cc") | ||
local_path_override( | ||
module_name = "rules_foreign_cc", | ||
path = "../..", | ||
) | ||
|
||
bazel_dep(name = "platforms", version = "0.0.5") | ||
|
||
bazel_dep(name = "bazel_ci_rules", version = "1.0.0", dev_dependency = True) | ||
|
||
# note that this dev_dependency is only needed because bazel_ci_rules | ||
# depends on it. If you are not using bazel_ci_rules; ideally we'd be able to remove this. | ||
bazel_dep(name = "rules_cc", version = "0.0.9", dev_dependency = True) | ||
|
||
rbe_preconfig = use_repo_rule( | ||
"@bazel_ci_rules//:rbe_repo.bzl", | ||
"rbe_preconfig", | ||
) | ||
|
||
rbe_preconfig( | ||
name = "buildkite_config", | ||
toolchain = "ubuntu2004", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "rules_foreign_cc") | ||
local_path_override( | ||
module_name = "rules_foreign_cc", | ||
path = "../..", | ||
) | ||
|
||
bazel_dep(name = "platforms", version = "0.0.5") | ||
|
||
bazel_dep(name = "bazel_ci_rules", version = "1.0.0", dev_dependency = True) | ||
|
||
# note that this dev_dependency is only needed because bazel_ci_rules | ||
# depends on it. If you are not using bazel_ci_rules; ideally we'd be able to remove this. | ||
bazel_dep(name = "rules_cc", version = "0.0.9", dev_dependency = True) | ||
|
||
rbe_preconfig = use_repo_rule( | ||
"@bazel_ci_rules//:rbe_repo.bzl", | ||
"rbe_preconfig", | ||
) | ||
|
||
rbe_preconfig( | ||
name = "buildkite_config", | ||
toolchain = "ubuntu2004", | ||
) |