Skip to content

Commit

Permalink
Add a config file for appveyor.com Windows CI testing.
Browse files Browse the repository at this point in the history
Adapted from http://blogs.perl.org/users/eserte/2016/04/testing-with-appveyor.html

Windows is known to not be working. See #297.

Signed-off-by: Michael G. Schwern <schwern@pobox.com>
  • Loading branch information
schwern committed Aug 10, 2016
1 parent 4aacd32 commit f37beee
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
branches:
except:
- /travis/
skip_tags: true

cache:
- C:\strawberry

install:
- if not exist "C:\strawberry" cinst strawberryperl
- set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cd C:\projects\%APPVEYOR_PROJECT_NAME%
- cpanm --installdeps .

build_script:
- perl Build.PL
- ./Build

test_script:
- ./Build test

0 comments on commit f37beee

Please sign in to comment.