You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user building Xcode targets using Gradle, I want the Gradle tasks representing the Xcode targets using PBXShellScriptBuildPhase to be out-of-date when its build specification change during an incremental build so I can have accurate feedback.
The content you are editing has changed. Please copy your edits and refresh the page.
Changes to the build phase name don't cause the task to be out-of-date. The name of a build phase is only an organizational tool and does not impact the build itself.
Any changes to inputPaths
Adding a new input path
Removing an existing input path
Changing the resolved path (any change resulting in the same resolved path should be ignored)
Changing the input file (or input directory)
Any changes to outputPaths
Adding a new output path
Removing an existing output path
Changing the resolved path (any change resulting in the same resolved path should be ignored)
Changing the output file (or output directory)
Any changes to shellPath (path only)
Any changes to shellScript (content only)
Changes to showEnvVarsInLog should not cause the task to be out-of-date.
As a user building Xcode targets using Gradle, I want the Gradle tasks representing the Xcode targets using
PBXShellScriptBuildPhase
to be out-of-date when its build specification change during an incremental build so I can have accurate feedback.Open Questions
Acceptance Criteria
inputPaths
outputPaths
shellPath
(path only)shellScript
(content only)showEnvVarsInLog
should not cause the task to be out-of-date.alwaysOutOfDate
(see Support alwaysOutOfDate key on PBXShellScriptBuildPhase #747)inputFileListPaths
causes the task to always be out-of-dateoutputFileListPaths
causes the task to always be out-of-dateThe text was updated successfully, but these errors were encountered: