-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathappveyor.yml
More file actions
31 lines (25 loc) · 894 Bytes
/
appveyor.yml
File metadata and controls
31 lines (25 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
os: Visual Studio 2015
platform: x64
build: off
environment:
matrix:
- test_moar: '2018.01'
# - test_moar: '' #latest
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl --allow-empty-checksums
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/tadzik/rakudobrew %USERPROFILE%\rakudobrew
- SET PATH=%USERPROFILE%\rakudobrew\bin;%PATH%
- rakudobrew build moar 2018.01
- rakudobrew build zef
- cd %APPVEYOR_BUILD_FOLDER%
- zef install Test::META
- zef install AttrX::Lazy
- SET PATH=C:\Users\appveyor\rakudobrew\moar-%TEST_MOAR%\install\share\perl6\site\bin;%PATH%
- SET AUTHOR_TESTING=1
- zef --depsonly install .
test_script:
- set TEST_AUTHOR=1 && prove -ve "perl6 -Ilib"
- zef --debug install .
shallow_clone: true