Publishes the ATX reports of all configured ecu.test packages or projects in this job.
These ATX reports are generated automatically in this post-build step and uploaded to test.guide.

Pipeline usage
Signatures:
publishATX(String atxName, boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
            
publishATX(ATXInstallation installation, boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
            
ATXServer.publish(boolean allowMissing, boolean runOnFailed, boolean archiving, boolean keepAll) : void
            
ATXServer.publish(Map<String, Object> settings) : void
            
Examples:
publishATX('test.guide', false, false, true, true)
            
def server = ATX.server('test.guide')
publishATX atxInstallation: server.installation
            
def server = ATX.newServer('test.guide', 'ecu.test')
server.publish()
            
def server = ATX.newServer atxName: 'test.guide', toolName: 'ecu.test'
server.publish allowMissing: true, runOnFailed: true, archiving: true, keepAll: true