From d3586b8c91cace2c036c1db17c9e3ab263667e59 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Thu, 26 May 2022 12:09:30 -0400 Subject: [PATCH] bazel: update rules_apple MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To pull in https://github.com/bazelbuild/rules_apple/pull/1478 ``` Envoy.xcframework ├── Info.plist ├── ios-arm64 │ ├── Envoy.a │ ├── Envoy.swiftmodule │ │ ├── arm64.swiftdoc │ │ └── arm64.swiftinterface │ └── Headers │ ├── Envoy.h │ └── module.modulemap └── ios-arm64_x86_64-simulator ├── Envoy.a ├── Envoy.swiftmodule │ ├── arm64.swiftdoc │ ├── arm64.swiftinterface │ ├── x86_64.swiftdoc │ └── x86_64.swiftinterface └── Headers ├── Envoy.h └── module.modulemap ``` Signed-off-by: JP Simard --- bazel/envoy_mobile_repositories.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bazel/envoy_mobile_repositories.bzl b/bazel/envoy_mobile_repositories.bzl index eedf79f153..f006142a6d 100644 --- a/bazel/envoy_mobile_repositories.bzl +++ b/bazel/envoy_mobile_repositories.bzl @@ -70,12 +70,12 @@ def upstream_envoy_overrides(): ) def swift_repos(): - # https://github.com/bazelbuild/rules_apple/pull/1443 + # https://github.com/bazelbuild/rules_apple/pull/1478 http_archive( name = "build_bazel_rules_apple", - sha256 = "7644c7d75ce9e4419c3050c4786175c253f1d35564869fda0e790647d9093eb8", - strip_prefix = "rules_apple-2d1fa9ea5f3544fed41d50c28c8508af035bc0a0", - url = "https://github.com/bazelbuild/rules_apple/archive/2d1fa9ea5f3544fed41d50c28c8508af035bc0a0.tar.gz", + sha256 = "4ffc44ccf28a694e5b494e0de5ff5b38e7cbbdf4b03795c22079265e545fc850", + strip_prefix = "rules_apple-012fc127012ed2c81f6b765afc571de9b4755169", + url = "https://github.com/bazelbuild/rules_apple/archive/012fc127012ed2c81f6b765afc571de9b4755169.tar.gz", ) # TODO(jpsim): Update to the next release which includes https://github.com/bazelbuild/rules_swift/pull/818