File: appveyor.yml

package info (click to toggle)
libcrypt-openssl-random-perl 0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 20; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 720 bytes parent folder | download
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
version: '{build}'
shallow_clone: true

environment:
  matrix:
    - perl_type: cygwin
    - perl_type: system
    - perl_type: strawberry
    - perl_type: strawberry
      perl_version: 5.24.3.1
    - perl_type: strawberry
      perl_version: 5.20.3.3
    - perl_type: strawberry
      perl_version: 5.18.4.1
install:
  # use strawberry perl's OpenSSL, remove AppVeyor's buildin OpenSSL-Win32
  - cmd: if [%perl_type%]==[strawberry] (
      rd /s /q C:\OpenSSL-Win32 )
  - 'call appveyor.cmd perl_setup'
  - '%perl% -V'
  - '%cpanm% -n Crypt::OpenSSL::Guess'
  - '%cpanm% --installdeps -n --with-develop --with-recommends .'

build: off

test_script:
  - '%perl% Makefile.PL && %make% test'

matrix:
 fast_finish: true