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