Skip to content

Commit

Permalink
Setup AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed May 24, 2018
1 parent 7daa84e commit 99e8435
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,35 @@
# brian's standard Appveyor config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_appveyor_config
# This file is licensed under the Artistic License 2.0

image:
- Visual Studio 2015
- Ubuntu

environment:
PERL5LIB: /home/appveyor/perl5/lib/perl5

platform: x64

branches:
only:
- master
- appveyor

skip_tags: true

install:
- cmd: if not exist "C:\strawberry" cinst strawberryperl
- cmd: set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cmd: cd %APPVEYOR_BUILD_FOLDER%
- sh: sudo apt-get install build-essential git libssl-dev
- sh: sudo apt-get install -y perl
- sh: export PATH=/home/appveyor/perl5/bin:$PATH
- perl -v
- cpan App::cpanminus
- cpanm --installdeps .

build_script:
- perl Makefile.PL
- cmd: gmake test
- sh: make test

0 comments on commit 99e8435

Please sign in to comment.