Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to latest Bazel rulesets #16

Merged
merged 6 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
bzlmod: ["--enable_bzlmod", "--noenable_bzlmod"]
name: Build and Test
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Select Xcode
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ module(

bazel_dep(
name = "apple_support",
version = "1.14.0",
version = "1.15.1",
repo_name = "build_bazel_apple_support",
)
bazel_dep(
name = "rules_swift",
version = "1.16.0",
version = "1.18.0",
repo_name = "build_bazel_rules_swift",
)
bazel_dep(
name = "rules_apple",
version = "3.3.0",
version = "3.5.0",
repo_name = "build_bazel_rules_apple",
)

Expand Down
8 changes: 4 additions & 4 deletions tools/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ def swift_bep_parser_dependencies(bzlmod_deps_only = False):
_maybe(
http_archive,
name = "build_bazel_rules_swift",
sha256 = "28a66ff5d97500f0304f4e8945d936fe0584e0d5b7a6f83258298007a93190ba",
url = "https://github.com/bazelbuild/rules_swift/releases/download/1.13.0/rules_swift.1.13.0.tar.gz",
sha256 = "bb01097c7c7a1407f8ad49a1a0b1960655cf823c26ad2782d0b7d15b323838e2",
url = "https://github.com/bazelbuild/rules_swift/releases/download/1.18.0/rules_swift.1.18.0.tar.gz",
)

# rules_apple

_maybe(
http_archive,
name = "build_bazel_rules_apple",
sha256 = "34c41bfb59cdaea29ac2df5a2fa79e5add609c71bb303b2ebb10985f93fa20e7",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.1.1/rules_apple.3.1.1.tar.gz",
sha256 = "c5387f966966000ab65284d4535d956491e7d31ed92ec79731c52e8fd4a49d5e",
url = "https://github.com/bazelbuild/rules_apple/releases/download/3.5.0/rules_apple.3.5.0.tar.gz",
)

# rules_xcodeproj
Expand Down
Loading