-
Notifications
You must be signed in to change notification settings - Fork 19
/
.appveyor.yml
34 lines (25 loc) · 962 Bytes
/
.appveyor.yml
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
32
33
34
os: Visual Studio 2015
platform: x64
# Update *_clear_cache.txt to force re-install
cache:
- C:\Strawberry -> .appveyor_clear_cache.txt
- C:\Rakudo -> .appveyor_clear_cache.txt
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- IF NOT EXIST "C:\Strawberry" choco install strawberryperl
- SET PATH=C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;%PATH%
- ps: refreshenv
- perl -v
- IF NOT EXIST "C:\Rakudo" appveyor DownloadFile "https://rakudo.org/latest/star/win" -FileName "%APPVEYOR_BUILD_FOLDER%\rakudo.msi"
- IF NOT EXIST "C:\Rakudo" msiexec /i rakudo.msi /quiet /qn /norestart /log install.log
- SET PATH=C:\Rakudo\bin;C:\Rakudo\share\perl6\site\bin;%PATH%
- ps: refreshenv
- raku -v
- cd %APPVEYOR_BUILD_FOLDER%
- zef --verbose install . --depsonly
build: off
test_script:
- zef --verbose install . --/test
- prove6 -v t
shallow_clone: true
clone_depth: 4