BSON-XS

 view release on metacpan or  search on metacpan

testing/write-config.pl  view on Meta::CPAN

#!/usr/bin/env perl
use v5.10;
use strict;
use warnings;
use utf8;
use open qw/:std :utf8/;

# Get helpers
use FindBin qw($Bin);
use lib "$Bin/../lib";
use EvergreenConfig;

sub main {
    my @tasks = (
        pre(qw/dynamicVars cleanUp fetchSource downloadPerl5Lib/),
        post(qw/cleanUp/),
        task( build => [qw/whichPerl buildModule uploadBuildArtifacts/] ),
        task(
            test       => [qw/whichPerl downloadBuildArtifacts testModule/],
            depends_on => 'build'
        ),
    );

    print assemble_yaml(
        timeout(600),
        buildvariants( \@tasks ),
    );

    return 0;
}

# execution
exit main();



( run in 2.899 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )