forked from serge-community/serge
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.appveyor.yml
42 lines (32 loc) · 846 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
35
36
37
38
39
40
41
skip_tags: true
image: Visual Studio 2017
platform: x64
environment:
matrix:
- version: 5.28.0.1
- version: 5.26.2.1
- version: 5.24.4.1
- version: 5.22.3.1
- version: 5.18.4.1
cache:
- C:\strawberry
install:
- if not exist "C:\strawberry" choco install strawberryperl --version %version%
- set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cd C:\projects\%APPVEYOR_PROJECT_NAME%
- perl -v
- cpanm -n -q --skip-satisfied --installdeps .
before_build:
- cpanm -n -q --skip-satisfied Devel::Cover Devel::Cover::Report::Codecov
build_script:
- perl Build.PL
- Build
before_test:
- cover -delete
test_script:
- Build test
- perl -MDevel::Cover t/compile.t
- perl -MDevel::Cover t/engine.t
- perl -MDevel::Cover t/plugins.t
after_test:
- cover -report codecov