Skip to content

Commit

Permalink
chore: turn off static analysis during builds (#9270)
Browse files Browse the repository at this point in the history
* turn off static analysis during builds

* try updating xcode on ci
  • Loading branch information
brainbicycle authored Sep 18, 2023
1 parent a68106c commit 58da1e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ios/Artsy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4475,7 +4475,7 @@
);
PRODUCT_NAME = Artsy;
PROVISIONING_PROFILE_SPECIFIER = "";
RUN_CLANG_STATIC_ANALYZER = YES;
RUN_CLANG_STATIC_ANALYZER = NO;
SWIFT_OBJC_BRIDGING_HEADER = "Artsy/Resources/Artsy-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
Expand Down Expand Up @@ -4552,7 +4552,7 @@
);
PRODUCT_NAME = Artsy;
PROVISIONING_PROFILE_SPECIFIER = "match AppStore net.artsy.artsy";
RUN_CLANG_STATIC_ANALYZER = YES;
RUN_CLANG_STATIC_ANALYZER = NO;
SWIFT_OBJC_BRIDGING_HEADER = "Artsy/Resources/Artsy-Bridging-Header.h";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -4632,6 +4632,7 @@
"-Werror=return-type",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
RUN_CLANG_STATIC_ANALYZER = NO;
SDKROOT = iphoneos;
};
name = Debug;
Expand Down Expand Up @@ -4690,6 +4691,7 @@
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
RUN_CLANG_STATIC_ANALYZER = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
Expand Down

0 comments on commit 58da1e6

Please sign in to comment.