-
Notifications
You must be signed in to change notification settings - Fork 318
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/cgrindel/rules_swift_package_manager/releases/tag/v0.35.1 _Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_ Co-authored-by: Chuck Grindel <[email protected]>
- Loading branch information
1 parent
a1fbf1f
commit 311c89c
Showing
5 changed files
with
116 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,79 @@ | ||
module( | ||
name = "rules_swift_package_manager", | ||
version = "0.35.1", | ||
) | ||
|
||
# MARK: - Runtime Dependencies | ||
|
||
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.18.1") | ||
bazel_dep(name = "bazel_skylib", version = "1.4.2") | ||
bazel_dep( | ||
name = "rules_go", | ||
version = "0.47.0", | ||
repo_name = "io_bazel_rules_go", | ||
) | ||
|
||
# The apple_support bazel_dep must come before the rules_cc. | ||
# https://github.com/bazelbuild/apple_support#incompatible-toolchain-resolution | ||
bazel_dep(name = "apple_support", version = "1.11.1") | ||
bazel_dep(name = "rules_cc", version = "0.0.6") | ||
bazel_dep(name = "platforms", version = "0.0.6") | ||
|
||
# With bzlmod enabled, any dependencies for repositories generated by | ||
# rules_swift_package_manager _must_ be a runtime dependency of rules_swift_package_manager. | ||
bazel_dep( | ||
name = "rules_swift", | ||
version = "2.1.1", | ||
repo_name = "build_bazel_rules_swift", | ||
) | ||
bazel_dep( | ||
name = "rules_apple", | ||
version = "3.6.0", | ||
repo_name = "build_bazel_rules_apple", | ||
) | ||
bazel_dep( | ||
name = "gazelle", | ||
version = "0.37.0", | ||
repo_name = "bazel_gazelle", | ||
) | ||
|
||
apple_cc_configure = use_extension( | ||
"@apple_support//crosstool:setup.bzl", | ||
"apple_cc_configure_extension", | ||
) | ||
use_repo(apple_cc_configure, "local_config_apple_cc") | ||
|
||
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps") | ||
go_deps.from_file(go_mod = "//:go.mod") | ||
use_repo( | ||
go_deps, | ||
"com_github_bazelbuild_buildtools", | ||
"com_github_creasty_defaults", | ||
"com_github_deckarep_golang_set_v2", | ||
"com_github_spf13_cobra", | ||
"com_github_stretchr_testify", | ||
"in_gopkg_yaml_v3", | ||
"org_golang_x_exp", | ||
"org_golang_x_text", | ||
) | ||
|
||
# MARK: - Dev Dependencies | ||
|
||
bazel_dep( | ||
name = "rules_bazel_integration_test", | ||
version = "0.14.1", | ||
dev_dependency = True, | ||
) | ||
bazel_dep( | ||
name = "bazel_skylib_gazelle_plugin", | ||
version = "1.4.1", | ||
dev_dependency = True, | ||
) | ||
|
||
bazel_binaries = use_extension( | ||
"@rules_bazel_integration_test//:extensions.bzl", | ||
"bazel_binaries", | ||
dev_dependency = True, | ||
) | ||
bazel_binaries.download(version_file = "//:.bazelversion") | ||
use_repo(bazel_binaries, "bazel_binaries") |
12 changes: 12 additions & 0 deletions
12
modules/rules_swift_package_manager/0.35.1/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_swift_package_manager", | ||
- version = "0.0.0", | ||
+ version = "0.35.1", | ||
) | ||
|
||
# MARK: - Runtime Dependencies | ||
|
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,14 @@ | ||
bcr_test_module: | ||
module_path: "" | ||
matrix: | ||
platform: ["macos"] | ||
bazel: | ||
# This needs to exactly match the value used in .bazelversion at the root. | ||
- 7.2.1 | ||
tasks: | ||
run_tests: | ||
name: "Run test module" | ||
platform: ${{ platform }} | ||
bazel: ${{ bazel }} | ||
test_targets: | ||
- "//bzlmod:e2e_test" |
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-0dHwhvBl10zf+Rt1hlS3RwWk4vtFzlL3lieo4whcDvU=", | ||
"strip_prefix": "", | ||
"url": "https://github.com/cgrindel/rules_swift_package_manager/releases/download/v0.35.1/rules_swift_package_manager.v0.35.1.tar.gz", | ||
"patches": { | ||
"module_dot_bazel_version.patch": "sha256-M8vcUv/ouUrDrl7L8AT6Kcb2D61e+Qz8lH/s1XUHblo=" | ||
}, | ||
"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 |
---|---|---|
|
@@ -48,7 +48,8 @@ | |
"0.32.0", | ||
"0.33.0", | ||
"0.34.0", | ||
"0.34.1" | ||
"0.34.1", | ||
"0.35.1" | ||
], | ||
"yanked_versions": {} | ||
} |