Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add auto-testing shenanigans
  • Loading branch information
DrHyde committed Feb 19, 2020
1 parent 3d7bc0a commit 39e2e0b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,15 @@
cache:
- C:\strawberry

install:
- if not exist "C:\strawberry" choco install strawberryperl -y
- set PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%
- cpanm --quiet --installdeps --with-develop --notest .

build_script:
- perl Makefile.PL
- gmake

test_script:
- gmake test
11 changes: 11 additions & 0 deletions .cirrus.yml
@@ -0,0 +1,11 @@
freebsd_instance:
image: freebsd-12-0-release-amd64

freebsd_tests_task:
test_script:
- pkg install -y perl5
- echo|cpan App::cpanminus
- cpanm --installdeps .
- perl Makefile.PL
- make
- make test
23 changes: 23 additions & 0 deletions .travis.yml
@@ -0,0 +1,23 @@
language: perl
dist: trusty
env: PERL_USE_UNSAFE_INC=0
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
matrix:
include:
- perl: 5.20
env: COVERAGE=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
sudo: false

0 comments on commit 39e2e0b

Please sign in to comment.