Skip to content

Commit

Permalink
Merge branch 'main' into pcre
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Nov 16, 2021
2 parents 8dac22d + e97f24e commit 9243887
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .bazelci/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,15 @@ tasks:
- //...
min_supported_version:
name: "Minimum Supported Version"
bazel: "3.7.0"
bazel: "4.0.0"
platform: ubuntu1804
build_targets:
- "//..."
test_targets:
- "//..."
min_supported_version_examples:
name: "Minimum Supported Version Examples"
bazel: "3.7.0"
bazel: "4.0.0"
platform: ubuntu1804
working_directory: examples
min_supported_targets: &min_supported_targets
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Documentation for all rules and providers are available at: https://bazelbuild.g

## Bazel versions compatibility

Works with Bazel after 3.7.0 without any flags.
Works with Bazel after 4.0.0 without any flags.

Note that the rules may be compatible with older versions of Bazel but support may break
in future changes as these older versions are not tested.
Expand Down
6 changes: 2 additions & 4 deletions examples/deps/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ def repositories():
maybe(
http_archive,
name = "rules_cc",
url = "https://github.com/bazelbuild/rules_cc/archive/dd2758b96dc8f9f4add81eaa4154b7e3d8be6873.zip",
sha256 = "4e14abe3f288b5ae31eee4dc68472bfcd8d59a0bb1be91dd2c6bfa8af56baf19",
strip_prefix = "rules_cc-dd2758b96dc8f9f4add81eaa4154b7e3d8be6873",
type = "zip",
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.1/rules_cc-0.0.1.tar.gz"],
sha256 = "4dccbfd22c0def164c8f47458bd50e0c7148f3d92002cdb459c2a96a68498241",
)

maybe(
Expand Down
8 changes: 4 additions & 4 deletions examples/third_party/libgit2/libgit2_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ def libgit2_repositories():
maybe(
http_archive,
name = "libgit2",
build_file = Label("//libgit2:BUILD.libgit2.bazel"),
sha256 = "192eeff84596ff09efb6b01835a066f2df7cd7985e0991c79595688e6b36444e",
strip_prefix = "libgit2-1.3.0",
urls = [
"https://mirror.bazel.build/github.com/libgit2/libgit2/archive/refs/tags/v1.3.0.tar.gz",
"https://github.com/libgit2/libgit2/archive/refs/tags/v1.3.0.tar.gz",
],
type = "tar.gz",
sha256 = "192eeff84596ff09efb6b01835a066f2df7cd7985e0991c79595688e6b36444e",
strip_prefix = "libgit2-1.3.0",
build_file = Label("//libgit2:BUILD.libgit2.bazel"),
)
6 changes: 3 additions & 3 deletions examples/third_party/python/python_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def python_repositories():
maybe(
http_archive,
name = "rules_python",
sha256 = "778197e26c5fbeb07ac2a2c5ae405b30f6cb7ad1f5510ea6fdac03bded96cc6f",
sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_python/releases/download/0.2.0/rules_python-0.2.0.tar.gz",
"https://github.com/bazelbuild/rules_python/releases/download/0.2.0/rules_python-0.2.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz",
"https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz",
],
)

Expand Down
6 changes: 2 additions & 4 deletions examples/third_party/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ def repositories():
maybe(
http_archive,
name = "rules_cc",
url = "https://github.com/bazelbuild/rules_cc/archive/dd2758b96dc8f9f4add81eaa4154b7e3d8be6873.zip",
sha256 = "4e14abe3f288b5ae31eee4dc68472bfcd8d59a0bb1be91dd2c6bfa8af56baf19",
strip_prefix = "rules_cc-dd2758b96dc8f9f4add81eaa4154b7e3d8be6873",
type = "zip",
urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.1/rules_cc-0.0.1.tar.gz"],
sha256 = "4dccbfd22c0def164c8f47458bd50e0c7148f3d92002cdb459c2a96a68498241",
)

0 comments on commit 9243887

Please sign in to comment.