Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers committed Oct 4, 2024
1 parent b3b6b5b commit 06ebb3d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ios-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Build RenderTest .ipa and .xctest for AWS Device Farm
run: |
set -e
bazel run //platform/ios:xcodeproj --@rules_xcodeproj//xcodeproj:extra_common_flags="--//:renderer=metal
bazel run //platform/ios:xcodeproj --@rules_xcodeproj//xcodeproj:extra_common_flags="--//:renderer=metal"
build_dir="$(mktemp -d)"
xcodebuild build-for-testing -scheme RenderTest -project MapLibre.xcodeproj -derivedDataPath "$build_dir"
render_test_app_dir="$(dirname "$(find "$build_dir" -name RenderTestApp.app)")"
Expand All @@ -143,7 +143,7 @@ jobs:
- name: Build CppUnitTests .ipa and .xctest for AWS Device Farm
run: |
set -e
bazel run //platform/ios:xcodeproj --@rules_xcodeproj//xcodeproj:extra_common_flags="--//:renderer=metal
bazel run //platform/ios:xcodeproj --@rules_xcodeproj//xcodeproj:extra_common_flags="--//:renderer=metal"
build_dir="$(mktemp -d)"
xcodebuild build-for-testing -scheme CppUnitTests -project MapLibre.xcodeproj -derivedDataPath "$build_dir"
ios_cpp_test_app_dir="$(dirname "$(find "$build_dir" -name CppUnitTestsApp.app)")"
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use_repo(pnpm, "pnpm")

provisioning_profile_repository = use_extension("@build_bazel_rules_apple//apple:apple.bzl", "provisioning_profile_repository_extension")
provisioning_profile_repository.setup(
fallback_profiles = "//platform/ios/codesign:profiles"
fallback_profiles = "//platform/ios/codesign:profiles",
)

http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
Expand Down
8 changes: 4 additions & 4 deletions platform/ios/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
load("@aspect_rules_js//js:defs.bzl", "js_library")
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
load("@build_bazel_rules_apple//apple:apple.bzl", "apple_static_xcframework", "apple_xcframework")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_framework")
load("@build_bazel_rules_apple//apple:resources.bzl", "apple_resource_bundle")
Expand All @@ -22,7 +23,6 @@ load(
)
load("//platform/ios/bazel:macros.bzl", "info_plist")
load("//platform/ios/bazel:provisioning.bzl", "configure_device_profiles")
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")

configure_device_profiles()

Expand Down Expand Up @@ -384,13 +384,13 @@ bool_flag(
config_setting(
name = "without_provisioning_profile",
flag_values = {
"//platform/ios:use_provisioning_profile": "False"
"//platform/ios:use_provisioning_profile": "False",
},
)

config_setting(
name = "with_provisioning_profile",
flag_values = {
"//platform/ios:use_provisioning_profile": "True"
"//platform/ios:use_provisioning_profile": "True",
},
)
)
2 changes: 1 addition & 1 deletion platform/ios/codesign/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ filegroup(
name = "profiles",
srcs = ["MapLibre.mobileprovision"],
visibility = ["//visibility:public"],
)
)

0 comments on commit 06ebb3d

Please sign in to comment.