The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# ABSTRACT: Common ground for Build.PL based builders
'Dist::Zilla::Role::BuildRunner',
'Dist::Zilla::Role::TestRunner';
#pod =head1 DESCRIPTION
#pod
#pod This role is a helper for Build.PL based installers. It implements the
#pod L<Dist::Zilla::Plugin::BuildRunner> and L<Dist::Zilla::Plugin::TestRunner>
#pod roles, and requires you to implement the L<Dist::Zilla::Plugin::PrereqSource>
#pod and L<Dist::Zilla::Plugin::InstallTool> roles yourself.
#pod
#pod =cut
sub build {
my $self = shift;
return
if -e 'Build' and (stat 'Build.PL')[9] <= (stat 'Build')[9];
$self->log_debug("running $^X Build.PL");
system $^X, 'Build.PL' and die "error with Build.PL\n";
$self->log_debug("running $^X Build");
system $^X, 'Build' and die "error running $^X Build\n";
return;
}
sub test {
my ($self, $target, $arg) = @_;
$self->build;
my $job_count = $arg && exists $arg->{jobs}
? $arg->{jobs}
: $self->default_jobs;
my $jobs = "j$job_count";
my $ho = "HARNESS_OPTIONS";
local $ENV{$ho} = $ENV{$ho} ? "$ENV{$ho}:$jobs" : $jobs;
my @testing = $self->zilla->logger->get_debug || $arg->{test_verbose} ? '--verbose' : ();
$self->log_debug('running ' . join(' ', $^X, 'Build', 'test', @testing));
system $^X, 'Build', 'test', @testing and die "error running $^X Build test\n";
return;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dist::Zilla::Role::BuildPL - Common ground for Build.PL based builders
=head1 VERSION
version 6.032
=head1 DESCRIPTION
This role is a helper for Build.PL based installers. It implements the
L<Dist::Zilla::Plugin::BuildRunner> and L<Dist::Zilla::Plugin::TestRunner>
roles, and requires you to implement the L<Dist::Zilla::Plugin::PrereqSource>
and L<Dist::Zilla::Plugin::InstallTool> roles yourself.
=head1 PERL VERSION
This module should work on any version of perl still receiving updates from
the Perl 5 Porters. This means it should work on any version of perl
released in the last two to three years. (That is, if the most recently
released version is v5.40, then this module should work on both v5.40 and
v5.38.)
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 AUTHOR
Ricardo SIGNES 😏 <cpan@semiotic.systems>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut