Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tetromino authored Nov 27, 2024
1 parent f796e9b commit ee5f344
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 1 deletion.
35 changes: 35 additions & 0 deletions modules/stardoc/0.7.2/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module(
name = "stardoc",
version = "0.7.2",
bazel_compatibility = [">=7.0.0"],
compatibility_level = 1,
)

bazel_dep(name = "protobuf", version = "29.0-rc3", repo_name = "com_google_protobuf")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "rules_java", version = "8.5.1")
bazel_dep(name = "rules_jvm_external", version = "6.3")
bazel_dep(name = "rules_license", version = "1.0.0")

# Maven artifacts required by Stardoc; keep consistent with deps.bzl
STARDOC_MAVEN_ARTIFACTS = [
"com.beust:jcommander:1.82",
"com.google.escapevelocity:escapevelocity:1.1",
"com.google.guava:guava:31.1-jre",
"com.google.truth:truth:1.1.3",
"junit:junit:4.13.2",
]

maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
name = "stardoc_maven",
artifacts = STARDOC_MAVEN_ARTIFACTS,
fail_if_repin_required = True,
lock_file = "//:maven_install.json",
repositories = [
"https://repo1.maven.org/maven2",
],
strict_visibility = True,
)
use_repo(maven, "stardoc_maven")

15 changes: 15 additions & 0 deletions modules/stardoc/0.7.2/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
- windows
bazel:
- 7.x
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- '@stardoc//stardoc/...'
4 changes: 4 additions & 0 deletions modules/stardoc/0.7.2/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"integrity": "sha256-Dh7UqY8m5xh3a9ZNBT0CuzTZhXLM0D1ro1URKhIFcGs=",
"url": "https://github.com/bazelbuild/stardoc/releases/download/0.7.2/stardoc-0.7.2.tar.gz"
}
3 changes: 2 additions & 1 deletion modules/stardoc/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"0.6.1",
"0.6.2",
"0.7.0",
"0.7.1"
"0.7.1",
"0.7.2"
],
"yanked_versions": {}
}

0 comments on commit ee5f344

Please sign in to comment.