Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-31452

IPA and DSYM files are not cleaned the right way

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Critical Critical
    • xcode-plugin

      Packaging more than one IPA into the same output directory will delete all previously created IPA and DSYM files. See also XCodeBuilder.java
      ...
      listener.getLogger().println(Messages.XCodeBuilder_cleaningIPA());
      for (FilePath path : ipaOutputPath.list("*.ipa")) {
      path.delete();
      }
      listener.getLogger().println(Messages.XCodeBuilder_cleaningDSYM());
      for (FilePath path : ipaOutputPath.list("*-dSYM.zip")) {
      path.delete();
      }
      ...
      It would be better to just delete files with the correct target name eg. "baseName + ".ipa";" etc.

          [JENKINS-31452] IPA and DSYM files are not cleaned the right way

          There are no comments yet on this issue.

            Unassigned Unassigned
            kamikaze139 Ulrich Kaminski
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: