##// END OF EJS Templates
Copyright header changes...
Copyright header changes Copyright header changes for Qt 5.5. Change-Id: I2b8e9356997de2c87a7436bcefd4d0948d566259 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2776:bc1f6aa59d42
r2776:bc1f6aa59d42
Show More
Jobs.pm
33 lines | 639 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 = "Qt Charts 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;