2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-27 22:13:28 +00:00

Merge pull request #7211 from gurevichmark/actions5

More debuggin in GitHub actions script
This commit is contained in:
besawn 2022-06-30 09:12:28 -04:00 committed by GitHub
commit 185982df27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -336,11 +336,12 @@ sub install_xcat{
foreach my $cmd (@cmds){
print "[install_xcat] running $cmd\n";
@output = runcmd("$cmd");
print "[install_xcat] RC was $::RUNCMD_RC\n";
if($::RUNCMD_RC){
print RED "[install_xcat] $cmd. ...[Failed]\n";
print "[install_xcat] error message:\n";
print Dumper \@output;
$check_result_str .= "> **INSTALL XCAT ERROR** : Please click ``Details`` label in ``Merge pull request`` box for detailed information ";
#$check_result_str .= "> **INSTALL XCAT ERROR** : Please click ``Details`` label in ``Merge pull request`` box for detailed information ";
#send_back_comment("$check_result_str");
return 1;
}