Releases: bitrise-steplib/steps-xcode-analyze
Releases · bitrise-steplib/steps-xcode-analyze
2.5.0
2.4.1
2.4.0
2.3.0
2.2.3
Step description update.
2.2.2
2.2.1
2.2.0
2.1.1
Add Flutter to the supported platform list.
2.1.0
New input:
disable_index_while_building
: If it is set to yes
it will add the COMPILER_INDEX_STORE_ENABLE=NO
flag to the xcodebuild
command which will disable the indexing during the build.
This could make the build faster by skipping the indexing during the build run.
Indexing is needed for
- Autocomplete
- Ability to quickly jump to definition
- Get class and method help by alt clicking.
- Which are not needed in CI environment.
Disable it locally:
In Xcode you can turn off the Index-WhileBuilding feature
by disabling the `Enable Index-WhileBuilding Functionality` in the `Build Settings`.
Disable it via xcodebuild:
In CI environment you can disable it by adding `COMPILER_INDEX_STORE_ENABLE=NO` flag
to the `xcodebuild` command.
Fix
Fix the disable code signing issue, which appeared with the Xcode 10.2 version.
From now the sep will use the CODE_SIGNING_ALLOWED=NO
flag for disable code signing.