I have a job that builds multiple IPA files, I have noticed in the workspace after a build only one IPA file exists, if I look at the workspace during a build I see other IPA files, but only one exists at a given time.
Is this still the case ? The project is supposed to be able to multiple IPAs. Can you describe your config a bit more ?
Are you using multiple xcode build steps in one job ? Then yes, this could cause it because we do something like
for (FilePath path : ipaOutputPath.list("*.ipa")) {
path.delete();
}
lacostej
added a comment - - edited Is this still the case ? The project is supposed to be able to multiple IPAs. Can you describe your config a bit more ?
Are you using multiple xcode build steps in one job ? Then yes, this could cause it because we do something like
for (FilePath path : ipaOutputPath.list( "*.ipa" )) {
path.delete();
}
Unassigned
Ashton Williams
Votes:
1Vote for this issue
Watchers:
3Start watching this issue
Created:
Updated:
{"errorMessages":["jqlTooComplex"],"errors":{}}
[{"id":-1,"name":"My open issues","jql":"assignee = currentUser() AND resolution = Unresolved order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":true},{"id":-2,"name":"Reported by me","jql":"reporter = currentUser() order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":true},{"id":-4,"name":"All issues","jql":"order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-5,"name":"Open issues","jql":"resolution = Unresolved order by priority DESC,updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-9,"name":"Done issues","jql":"statusCategory = Done order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-3,"name":"Viewed recently","jql":"issuekey in issueHistory() order by lastViewed DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-6,"name":"Created recently","jql":"created >= -1w order by created DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-7,"name":"Resolved recently","jql":"resolutiondate >= -1w order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false},{"id":-8,"name":"Updated recently","jql":"updated >= -1w order by updated DESC","isSystem":true,"sharePermissions":[],"requiresLogin":false}]
the same thing happens to me - is there any way to distinguish the ipa names for different targets?