Skip to content

Commit

Permalink
Publish bazelbuild/rules_testing@v0.4.0 (#761)
Browse files Browse the repository at this point in the history
Co-authored-by: Richard Levasseur <rlevasseur@google.com>
  • Loading branch information
publish-to-bcr-bot[bot] and rickeylev committed Jul 11, 2023
1 parent 170668c commit 61f2431
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 1 deletion.
79 changes: 79 additions & 0 deletions modules/rules_testing/0.4.0/MODULE.bazel
@@ -0,0 +1,79 @@
module(
name = "rules_testing",
version = "0.4.0",
compatibility_level = 1,
)

bazel_dep(name = "platforms", version = "0.0.6")
bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "rules_license", version = "0.0.4")

# ===== The rest of these are development dependencies =====

# TODO(https://github.com/bazelbuild/stardoc/issues/117): stardoc doesn't yet
# work with bzlmod enabled. This defines the repo so load() works.
bazel_dep(
name = "stardoc",
version = "0.5.6",
dev_dependency = True,
repo_name = "io_bazel_stardoc",
)
bazel_dep(name = "rules_python", version = "0.22.0", dev_dependency = True)

python = use_extension(
"@rules_python//python/extensions:python.bzl",
"python",
dev_dependency = True,
)
python.toolchain(
name = "python_3_11",
python_version = "3.11",
)

# NOTE: use_repo() must be called for each platform that runs the docgen tools
use_repo(
python,
"python_3_11_toolchains",
"python_3_11_x86_64-unknown-linux-gnu",
)

# NOTE: This is actualy a dev dependency, but due to
# https://github.com/bazelbuild/bazel/issues/18248 it has to be non-dev to
# generate the repo name used in the subsequent register_toolchains() call.
# Once 6.2 is the minimum supported version, the register_toolchains
# call can use dev_dependency=True and this can go away entirely.
dev = use_extension(
"//:dev_extension.bzl",
"dev",
)
use_repo(dev, "rules_testing_dev_toolchains")

# NOTE: This call will be run by downstream users, so the
# repos it mentions must exist.
register_toolchains(
"@rules_testing_dev_toolchains//:all",
dev_dependency = True,
)

interpreter = use_extension(
"@rules_python//python/extensions:interpreter.bzl",
"interpreter",
dev_dependency = True,
)
interpreter.install(
name = "python_3_11_interpreter",
python_name = "python_3_11",
)
use_repo(interpreter, "python_3_11_interpreter")

pip = use_extension(
"@rules_python//python/extensions:pip.bzl",
"pip",
dev_dependency = True,
)
pip.parse(
name = "docs-pypi",
python_interpreter_target = "@python_3_11_interpreter//:python",
requirements_lock = "//docs:requirements.txt",
)
use_repo(pip, "docs-pypi")
13 changes: 13 additions & 0 deletions modules/rules_testing/0.4.0/patches/module_dot_bazel_version.patch
@@ -0,0 +1,13 @@
Index: MODULE.bazel
===================================================================
--- MODULE.bazel
+++ MODULE.bazel
@@ -1,7 +1,7 @@
module(
name = "rules_testing",
- version = "0.0.1",
+ version = "0.4.0",
compatibility_level = 1,
)

bazel_dep(name = "platforms", version = "0.0.6")
12 changes: 12 additions & 0 deletions modules/rules_testing/0.4.0/presubmit.yml
@@ -0,0 +1,12 @@
# We recommend included a bcr test workspace that exercises your ruleset with bzlmod.
# For an example, see https://github.com/aspect-build/bazel-lib/tree/main/e2e/bzlmod.
bcr_test_module:
module_path: "e2e/bzlmod"
matrix:
platform: ["debian10", "macos", "ubuntu2004", "windows"]
tasks:
run_tests:
name: "Run test module"
platform: ${{ platform }}
test_targets:
- "//..."
9 changes: 9 additions & 0 deletions modules/rules_testing/0.4.0/source.json
@@ -0,0 +1,9 @@
{
"integrity": "sha256-jfCo6yFznqSwoD9dx55o4kWkXAds+rQEuUDMIFy2IWI=",
"strip_prefix": "rules_testing-0.4.0",
"url": "https://github.com/bazelbuild/rules_testing/releases/download/v0.4.0/rules_testing-v0.4.0.tar.gz",
"patches": {
"module_dot_bazel_version.patch": "sha256-VtZGFRY8WhTRjqMSw8hK1Dk1o/jPU7KcFJimD1GWBTQ="
},
"patch_strip": 0
}
3 changes: 2 additions & 1 deletion modules/rules_testing/metadata.json
Expand Up @@ -16,7 +16,8 @@
"0.0.5",
"0.1.0",
"0.2.0",
"0.3.0"
"0.3.0",
"0.4.0"
],
"yanked_versions": {
"0.0.5": "Mostly broken: https://github.com/bazelbuild/rules_testing/issues/33"
Expand Down

0 comments on commit 61f2431

Please sign in to comment.