-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: https://github.com/seh/rules_cue/releases/tag/v0.9.0 _Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_ Co-authored-by: Steven E. Harris <[email protected]>
- Loading branch information
1 parent
6c929f9
commit 0531120
Showing
5 changed files
with
81 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module( | ||
name = "rules_cue", | ||
version = "0.9.0", | ||
) | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "platforms", version = "0.0.10") | ||
bazel_dep(name = "rules_go", version = "0.50.1") | ||
|
||
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk") | ||
go_sdk.download( | ||
version = "1.23.3", | ||
) | ||
|
||
cue = use_extension("//cue:extensions.bzl", "cue") | ||
use_repo( | ||
cue, | ||
"cue_tool_toolchains", | ||
) | ||
|
||
register_toolchains("@cue_tool_toolchains//:all") | ||
|
||
bazel_dep(name = "gazelle", version = "0.40.0", dev_dependency = True) |
12 changes: 12 additions & 0 deletions
12
modules/rules_cue/0.9.0/patches/module_dot_bazel_version.patch
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,12 @@ | ||
=================================================================== | ||
--- a/MODULE.bazel | ||
+++ b/MODULE.bazel | ||
@@ -1,7 +1,7 @@ | ||
module( | ||
name = "rules_cue", | ||
- version = "0.0.0", | ||
+ version = "0.9.0", | ||
) | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "platforms", version = "0.0.10") |
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,35 @@ | ||
matrix: &matrix | ||
platform: | ||
- centos7 | ||
- debian10 | ||
- macos | ||
- ubuntu2004 | ||
# Some valid invocations of the "cue" tool can't succeed (e.g. use | ||
# of the "path" and "expression" rules attributes) until we resolve | ||
# or find a reliable workaround for the following issue: | ||
# | ||
# https://github.com/bazelbuild/bazel/issues/17487 | ||
# | ||
# Until then, withdraw promised support for using this module on | ||
# Windows. | ||
#- windows | ||
bazel: | ||
- 6.x | ||
- 7.x | ||
tasks: | ||
verify_targets: | ||
name: Verify that all tests succeed | ||
platform: ${{ platform }} | ||
bazel: ${{ bazel }} | ||
test_targets: | ||
- '@rules_cue//test:all' | ||
bcr_test_module: | ||
module_path: examples/bzlmod | ||
matrix: *matrix | ||
tasks: | ||
run_test_module: | ||
name: Run test module | ||
platform: ${{ platform }} | ||
bazel: ${{ bazel }} | ||
build_targets: | ||
- //root |
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,9 @@ | ||
{ | ||
"integrity": "sha256-sn5LyY/TKTcFU2SHPhrlLnWhfUpaVDPxxhY1gIURLuo=", | ||
"strip_prefix": "rules_cue-0.9.0", | ||
"url": "https://github.com/seh/rules_cue/releases/download/v0.9.0/vcs-archive-v0.9.0.tar.gz", | ||
"patches": { | ||
"module_dot_bazel_version.patch": "sha256-cgadCzHAG8jhkCx+SGg9ipJzgnPuK4wLSfM/F4AX8mo=" | ||
}, | ||
"patch_strip": 1 | ||
} |
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 |
---|---|---|
|
@@ -22,7 +22,8 @@ | |
"0.7.0", | ||
"0.8.1", | ||
"0.8.2", | ||
"0.8.3" | ||
"0.8.3", | ||
"0.9.0" | ||
], | ||
"yanked_versions": {} | ||
} |