Skip to content

Commit

Permalink
Merge pull request #9 from Peatix/merge-1.17
Browse files Browse the repository at this point in the history
Merge 1.17
  • Loading branch information
aklaswad authored Jun 12, 2023
2 parents d4cce42 + fcbb746 commit a7d1e85
Show file tree
Hide file tree
Showing 36 changed files with 1,314 additions and 534 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: test
on:
push:
branches:
- 'master'
tags-ignore:
- '*'
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macOS-latest', 'windows-latest']
perl: [ '5.30', '5.28', '5.10' ]
exclude:
# not supported on actions-setup-perl
- os: windows-latest
perl: '5.10'
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --installdeps .
- run: prove -lr --timer t xt
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ cover_db/
TheSchwartz*.tar.gz
MYMETA.yml
MYMETA.json
META.json
META.yml
*.bak
Notes.md
/TheSchwartz-*
/.build
/_build_params
/Build
/Build.bat
!Build/
!META.json
!LICENSE
50 changes: 8 additions & 42 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -1,46 +1,12 @@
use 5.008;
# =========================================================================
# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA.
# DO NOT EDIT DIRECTLY.
# =========================================================================

use 5.008_001;
use strict;
use warnings;
use Module::Build;

my $class = Module::Build->subclass(
class => 'My::Builder',
code => q{
sub ACTION_authortest {
my ($self) = @_;
$self->test_files( qw< xt > );
$self->recursive_test_files(1);
$self->depends_on('test');
return;
}
sub ACTION_distdir {
my ($self) = @_;
$self->depends_on('authortest');
return $self->SUPER::ACTION_distdir();
}
}
);
use Module::Build::Tiny 0.035;

my $builder = $class->new(
module_name => 'TheSchwartz',
license => 'perl',
dist_author => 'Six Apart <[email protected]>',
dist_version_from => 'lib/TheSchwartz.pm',
configure_requires => { 'Module::Build' => 0 },
build_requires => {
'Module::Build' => 0,
'Test::More' => 0,
'Data::ObjectDriver' => 0.04,
'Digest::MD5' => 0,
'Storable' => 0,
},
requires => {
'Data::ObjectDriver' => 0.04,
'Digest::MD5' => 0,
'Storable' => 0,
},
add_to_cleanup => [ 'TheSchwartz-*', 'tmp', 'blib', '*.bak', 'META.*' ],
script_files => ['bin/schwartzmon'],
);
Build_PL();

$builder->create_build_script();
24 changes: 24 additions & 0 deletions CHANGES → Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
{{$NEXT}}

1.17 2021-12-30T13:21:45Z

- schwartzmon: 'Not an ARRAY reference' in DBSet::add for at least v5.16.3 GH#12 (@trwww++)

1.16 2021-07-16T07:49:43Z

- Add ability to disable job randomization GH#9 (@jamadam++)

1.15 2020-01-28T06:19:54Z

- Fix tests on win32 GH#4 (@charsbar++)

1.14 2019-10-17T17:51:40Z

- Added missing prereq Class::Accessor::Fast as suggested by CPANTS. GH#1 (@manwar++)

1.13 2019-08-07T16:28:14Z

- the module maintainer has been changed to Takumi Akiyama (AKIYM)
- fix tests fail without '.' in @INC. RT #124610
- require perl-5.8.1 or later

1.12 Mon Mar 30 2015
- Fix replace_job hanging & postgresql issues. RT #65712
- Add strict_remove_ability to prevent auto resetting of abilities.
Expand Down
Loading

0 comments on commit a7d1e85

Please sign in to comment.