我有一个从 Jenkins slave 运行的 Perl 脚本。该脚本执行一个保存在远程机器 A 上的 shell 脚本。这个 shell 脚本实际上在机器 A 本身上部署了 war。两台机器,Jenkins slave 和 remote box 都是 CentOS 实例。
use strict;
use warnings;
use Cwd;
use File::Copy;
use Getopt::Long;
use File::Basename;
use Net::OpenSSH;
my ($conf_file, $environment, $doexec, $exec, $job, $dest_file, $user, $host, $IP, $TARGET_SERVER, $JENKINS_JOB, $wrapper, $src_file, $src_path, $src_dist_path, $src_full_path, $id_file, $ssh, @array, $line);
init();
sub init {
$JENKINS_JOB = $ENV{'JOB_NAME'};
$conf_file = "/home/ec2-user/SCM/conf/deploy_build.conf";
open (FH, "<", $conf_file) or die "Cannot open < $conf_file: $!";
while (<FH>) {
if ( $_ =~ /\b$JENKINS_JOB\b/ ) {
push @array, $_;
} else {
next;
}
}
foreach $line (@array) {
($job, $src_path, $dest_file, $user, $wrapper) = split(':', $line);
$id_file = "/home/ec2-user/.ssh/priv_key";
$ssh = Net::OpenSSH->new($IP, key_path => $id_file, user => $user);
$ssh->error and die "Couldn't establish SSH connection: ". $ssh->error;
printf "\n";
if (length $wrapper) {
printf "Initiating subroutine for executing wrapper on remote machine...\n";
&exec_wrapper;
} else {
printf "*** No wrapper specified ****\n";
}
}
}
sub exec_wrapper {
my ($stdout, $errput) = $ssh->capture2("~/release/$wrapper");
printf "Output: $stdout\n" if $stdout;
die "Error: $errput\n" if $errput;
printf "\n\n\n";
}
现在的问题是,虽然程序运行良好,但它会在一段时间后打印输出。整个输出在 $stdout 中捕获,然后转储。由于此作业作为 Jenkins 作业运行,因此最终用户在转储输出之前不知道发生了什么。我想在事件发生(运行时)时打印每一行,而不是等待整个输出存储在变量中并稍后转储。我确实阅读了这篇文章,但我不确定它是否适用于我的案例,如果适用,我该如何实施。我确实尝试将其放在$| = 1;
脚本的顶部。它没有用。然后我尝试在初始化 ssh 对象之前放置它,但它在任何情况下都不起作用。顺便提一下,在我的场景中,效率不是问题。
任何帮助将不胜感激。