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
            
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')
atx.publish()