-
Notifications
You must be signed in to change notification settings - Fork 8
/
.drone.yml
54 lines (45 loc) · 1.04 KB
/
.drone.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
kind: pipeline
name: default
steps:
- name: Test
image: perl:5.28.0
commands:
- cpanm -q --notest --no-man-pages --installdeps .
- cpanm -q --notest --no-man-pages Test2::Harness
- yath --qvf
- name: Build
image: perl:5.28.0
depends_on:
- Test
commands:
- cpanm -q --notest --no-man-pages App::ModuleBuildTiny
- git clean -xdf
- mbtiny dist
- ls -l
- &installation
name: Install (perl 5.30)
image: perl:5.30
depends_on:
- Build
commands:
- echo *.tar.gz
- cpanm --notest -q *.tar.gz
- cpanm -q *.tar.gz
- << : *installation
name: Install (perl 5.28)
image: perl:5.28
- << : *installation
name: Install (perl 5.26)
image: perl:5.26
- << : *installation
name: Install (perl 5.24)
image: perl:5.24
- << : *installation
name: Install (perl 5.22)
image: perl:5.22
- << : *installation
name: Install (perl 5.20)
image: perl:5.20
- << : *installation
name: Install (perl 5.18)
image: perl:5.18