github MobileNativeFoundation/rules_xcodeproj 1.0.0rc3

latest releases: 3.2.0, 3.1.2, 3.1.1...
2 years ago

What’s Changed

  • Added xcodeproj.install_directory attribute: #1723
  • Added support for rules_apple's *_build_test rules: #1730
  • Fixed compiling of objc_library targets that don't correctly set testonly: #1743
  • Fixed indexing of rules that use -vfsoverlay: #1726
  • Fixed args, envs, and xccurrentversions related generation errors when using focused targets: #1728 and #1729
  • Fixed cp -c issue with multiple volumes: #1747

Full Changelog: 1.0.0rc2...1.0.0rc3

Contributors

Bzlmod Snippet

bazel_dep(name = "rules_xcodeproj", version = "1.0.0rc3", repo_name = "com_github_buildbuddy_io_rules_xcodeproj")

release.tar.gz’s integrity: sha256-77BXx0igovf/93AbJJ/o5yGbCLYcOGMiY9eJcoUyXqo=

Workspace Snippet

Please use the release asset (release.tar.gz) from your Bazel WORKSPACE instead of GitHub's source asset to reduce download size and improve reproducibility.

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "com_github_buildbuddy_io_rules_xcodeproj",
    sha256 = "efb057c748a0a2f7fff7701b249fe8e7219b08b61c38632263d7897285325eaa",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/1.0.0rc3/release.tar.gz",
)

load(
    "@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:repositories.bzl",
    "xcodeproj_rules_dependencies",
)

xcodeproj_rules_dependencies()

load(
    "@build_bazel_rules_apple//apple:repositories.bzl",
    "apple_rules_dependencies",
)

apple_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:repositories.bzl",
    "swift_rules_dependencies",
)

swift_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:extras.bzl",
    "swift_rules_extra_dependencies",
)

swift_rules_extra_dependencies()

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()

Don't miss a new rules_xcodeproj release

NewReleases is sending notifications on new releases.