shlomif / perl-XML-SemanticDiff

The XML-SemanticDiff CPAN distribution for semantic (= non-ordered and probably not what you want) comparison of two XML docs
https://metacpan.org/release/XML-SemanticDiff
Other
2 stars 5 forks source link

Add support for CI testing #7

Closed jjatria closed 6 years ago

jjatria commented 6 years ago

This patch adds configuration files for Travis and AppVeyor (and should close #1 and #2).

It also includes a small change in dist.ini to make it possible to build the module (6ccd631).

The Travis setup uses the Travis Perl helpers to test versions 5.12 and up, including 5.26 as well as "blead" and "dev" (allowing failures on "blead").

The AppVeyor configuration is mostly copied from that of Alien::Build, which means that it also copies all of its idiosyncrasies (in particular, long lists of packages that need to be installed manually for some reason, etc). Here you can see the results of the latest build of my fork.

It tests Strawberry Perl versions 5.12 and up, including 5.26. All of them are tested on 64 bit, except 5.12.4, which is only available on 32 bit. ActiveState Perl 5.24 (the latest at the time) is also tested.

Acknowledgements go to @plicease and @lancew for their work on the original AppVeyor config.

shlomif commented 6 years ago

On Thu, 12 Oct 2017 06:30:50 -0700 José Joaquín Atria notifications@github.com wrote:

This patch adds configuration files for Travis and AppVeyor (and should close

1 and #2).

It also includes a small change in dist.ini to make it possible to build the module (6ccd631).

The Travis setup uses the Travis Perl helpers to test versions 5.12 and up, including 5.26 as well as "blead" and "dev" (allowing failures on "blead").

The AppVeyor configuration is mostly copied from that of Alien::Build, which means that it also copies all of its idiosyncrasies (in particular, long lists of packages that need to be installed manually for some reason, etc). Here you can see the results of the latest build of my fork.

It tests Strawberry Perl versions 5.12 and up, including 5.26. All of them are tested on 64 bit, except 5.12.4, which is only available on 32 bit. ActiveState Perl 5.24 (the latest at the time) is also tested.

Acknowledgements go to @plicease and @lancew for their work on the original AppVeyor config.

You can view, comment on, or merge this pull request online at:

https://github.com/shlomif/perl-XML-SemanticDiff/pull/7

-- Commit Summary --

  • Add Travis CI setup
  • Add Pod::Weaver::Section::Support as an author dependency
  • Add AppVeyor config

-- File Changes --

A .appveyor.yml (63)
A .travis.yml (24)
M perl/modules/XML-SemanticDiff/dist.ini (2)

-- Patch Links --

https://github.com/shlomif/perl-XML-SemanticDiff/pull/7.patch https://github.com/shlomif/perl-XML-SemanticDiff/pull/7.diff

Thanks! I'll take a look.

--

Shlomi Fish http://www.shlomifish.org/ Freecell Solver - http://fc-solve.shlomifish.org/

Deletionists delete Wikipedia articles that they consider lame.

Chuck Norris deletes Deletionists whom he considers lame.

Please reply to list if it's a mailing list post - http://shlom.in/reply .

shlomif commented 6 years ago

Merged, thanks!