Skip to content

Commit bf3b933

Browse files
committed
Add AppVeyor config file
1 parent 6672f19 commit bf3b933

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 1.0.{build}
2+
3+
branches:
4+
except:
5+
- /travis/
6+
skip_tags: true
7+
8+
cache:
9+
- C:\strawberry -> appveyor.yml
10+
11+
install:
12+
- if not exist "C:\strawberry" cinst strawberryperl
13+
- set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
14+
- cd C:\projects\%APPVEYOR_PROJECT_NAME%
15+
- cpanm --installdeps .
16+
17+
build_script:
18+
- perl Makefile.PL
19+
- gmake
20+
21+
test_script:
22+
- gmake test TEST_VERBOSE=1
23+
24+
notifications:
25+
- provider: Email
26+
to:
27+
- jkeenan@cpan.org
28+
on_build_status_changed: true
29+

0 commit comments

Comments
 (0)