Skip to content

Commit 13bc298

Browse files
committed
add Windows testing with Appveyor
1 parent d20a01e commit 13bc298

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
`ip-ip2bin` (but modified for the new API and sub naming
99
convention)
1010
+ change module file suffix to `rakumod`
11+
+ add Windows testing with `appveyor.yml`
1112

1213
# 2019-10-15
1314
- v1.1.0

appveyor.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
os: Visual Studio 2015
2+
3+
platform: x64
4+
5+
environment:
6+
matrix:
7+
- test_moar: '2017.10'
8+
- test_moar: '' #latest
9+
10+
install:
11+
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
12+
- choco install strawberryperl --allow-empty-checksums
13+
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
14+
- git clone https://github.com/tadzik/rakudobrew %USERPROFILE%\rakudobrew
15+
- SET PATH=%USERPROFILE%\rakudobrew\bin;%PATH%
16+
- rakudobrew build moar %TEST_MOAR%
17+
- rakudobrew build zef
18+
- cd %APPVEYOR_BUILD_FOLDER%
19+
- zef --depsonly install .
20+
21+
build: off
22+
23+
test_script:
24+
- set AUTHOR_TESTING=1 && prove -ve "perl6 -I."
25+
- zef install .
26+
27+
shallow_clone: true

0 commit comments

Comments
 (0)