我正在尝试将我们的詹金斯构建日志推送到 S3。我在构建阶段使用了 Groovy 插件和以下脚本
// This script should be run in a system groovy script build step. // The FilePath class understands what node a path is on, not just the path. import hudson.FilePath // Get path to console log file on master. logFile = build.getLogFile() // Turn this into a FilePath object. logFilePathOnMaster = new FilePath(logFile) logFileName = build.envVars["JOB_BASE_NAME"] + build.envVars["RT_RELEASE_STAGING_VERSION"] + '.txt' // Create remote file path obj to build agent. remoteLogFile = new FilePath(build.workspace, logFileName) // Copy contents of master's console log to file on build agent. remoteLogFile.copyFrom(logFilePathOnMaster)
然后我使用 S3 插件将 .txt 文件推送到 S3。
但是这个脚本从主节点获取构建日志文件。构建日志如何从从节点传输到主节点?我可以在没有主节点参与的情况下访问我的从节点上的构建日志文件吗?
从节点必须在某处构建时保留构建日志?我似乎找不到它。