-
Notifications
You must be signed in to change notification settings - Fork 7
/
.appveyor.yml
54 lines (42 loc) · 1.39 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# An experimental AppVeyor config to install Strawberry Perl and
# Rakudo Star. Once installed, AppVeyor caches those for use next time.
#
# I specifically don't build Rakudo from GitHub because I want to use
# the "normal people" release.
# AppVeyor environment variables: https://www.appveyor.com/docs/environment-variables/
os: Visual Studio 2015
platform: x64
# clearing the cache: https://github.com/appveyor/ci/issues/985
# change .appveyor_clear_cache.txt to invalidate cache
#
# If the build is successful, AppVeyor caches these files and
# directories for future builds
cache:
- C:\Rakudo -> .appveyor_clear_cache.txt
- C:\Rakudo\share\perl6 -> META6.json
branches:
only:
- master
# set your own environment variables here.
#
# Perl 5's Test::Harness has several env variables (many appear as prove switches)
# https://metacpan.org/pod/Test::Harness
environment:
AUTOMATED_TESTING: 1
TEST_VERBOSE: 0
HARNESS_OPTIONS:
HARNESS_VERBOSE: 0
install:
- if not exist "C:\rakudo" cinst rakudostar
- SET PATH=C:\rakudo\bin;C:\rakudo\share\perl6\site\bin;%PATH%
- ps: refreshenv
- perl6 -v
- zef install --deps-only .
- cd %APPVEYOR_BUILD_FOLDER%
build: off
# many of the settings in `environment` affect what happens in the test script
#
# I'd like to run Devel::Cover and submit to Coveralls too.
test_script:
- zef test .
shallow_clone: true