##// END OF EJS Templates
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).

File last commit:

r1150:27b7fe27c99d
r1191:6223c1214e9d
Show More
Jobs.pm
32 lines | 652 B | text/x-perl | PerlLexer
package Jobs;
use File::Basename;
use Tiny;
sub get {
my $inifile = shift;
my $jobname = shift;
# Strip the prefix from job name when using ${bamboo.buildPlanName}
my $prefix = "Digia Qt Commercial - Chart component - ";
$jobname =~ s/$prefix//;
# read ini file
my $cfg = Config::Tiny->read( $inifile );
# get section from ini by jobname
my %job = %{$cfg->{$jobname}};
if (!%job) {
die ("Unknown jobname! Check $inifile and bamboo job name.");
}
# print out the ini settings
print "\n\nini file: $inifile\n";
print "[$jobname]\n";
foreach (keys %job) {
print $_ . "=" . $job{$_} . "\n";
}
print "\n";
return %job;
}
1;