Is it possible to use Jenkins with XCTest?
There's a ruby script (OCUnit2JUnit -- https://github.com/ciryon/OCUnit2JUnit) that parses OCUnit output and creates XML files that Jenkins can parse.
Is there something equivalent to handle the new XCTest output?
Right now, using Apple's continuous integration is not a possibility.
This is what I run on my Jenkins project after installing ocunit2junit on my build machine:
I then added a Publish JUnit test result report as a post build action. Was a bit flakey at first (only creating the xml files when there was no post-build action), but after initiating the build directly on my build machine, it works.