From 53eb8f26b81da365bc5070d23ce84fbe3e36396f Mon Sep 17 00:00:00 2001 From: Lance Wicks Date: Wed, 20 Dec 2017 18:51:14 +0000 Subject: [PATCH] Add appveyor config for testing on Windows --- .appveyor.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000..ee7e25f0 --- /dev/null +++ b/.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