-
Notifications
You must be signed in to change notification settings - Fork 7
195 lines (193 loc) · 5.64 KB
/
build-and-test.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
---
name: dzil build and test
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
workflow_dispatch:
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
strategy:
max-parallel: 1
container:
image: perldocker/perl-tester:5.32
steps:
- uses: actions/checkout@v2
- name: Run Tests with coverage
env:
AUTHOR_TESTING: 1
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
RELEASE_TESTING: 1
run: auto-build-and-test-dist
- uses: actions/upload-artifact@master
with:
name: build_dir
path: build_dir
test_linux:
runs-on: ubuntu-latest
name: Perl ${{ matrix.perl-version }} on ubuntu-latest
needs: build
strategy:
matrix:
perl-version:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
env:
AUTHOR_TESTING: 1
steps:
- uses: actions/download-artifact@master
with:
name: build_dir
path: .
- name: Install deps - older than 5.14
if: success() && ( matrix.perl-version == 5.8 || matrix.perl-version == 5.10 || matrix.perl-version == 5.12 )
run: >
cpm install -g
--cpanfile cpanfile
--without-develop
--with-suggests
--show-build-log-on-failure
- name: Install deps - 5.14 and newer
if: success() && ( matrix.perl-version != 5.8 && matrix.perl-version != 5.10 && matrix.perl-version != 5.12 )
run: >
cpm install -g
--cpanfile cpanfile
--with-develop
--with-suggests
--show-build-log-on-failure
- name: Run Tests - older than 5.14
if: success() && ( matrix.perl-version == 5.8 || matrix.perl-version == 5.10 || matrix.perl-version == 5.12 )
run: prove -lr --jobs 2 t
- name: Run Tests - 5.14 and newer
if: success() && ( matrix.perl-version != 5.8 && matrix.perl-version != 5.10 && matrix.perl-version != 5.12 )
run: prove -lr --jobs 2 t xt
test_macos:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["macos-latest"]
perl-version:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }}
needs: build
steps:
- uses: actions/checkout@v2
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/download-artifact@master
with:
name: build_dir
path: .
- run: perl -V
- name: Install deps - older than 5.14
if: success() && ( matrix.perl-version == 5.8 || matrix.perl-version == 5.10 || matrix.perl-version == 5.12 )
uses: perl-actions/install-with-cpm@v1
with:
cpanfile: "cpanfile"
args: >
--without-develop
--with-suggests
--with-test
--mirror https://cpan.metacpan.org
--mirror http://cpan.cpantesters.org
- name: Install deps - 5.14 and newer
if: success() && ( matrix.perl-version != 5.8 && matrix.perl-version != 5.10 && matrix.perl-version != 5.12 )
uses: perl-actions/install-with-cpm@v1
with:
cpanfile: "cpanfile"
args: >
--with-develop
--with-suggests
--with-test
--mirror https://cpan.metacpan.org
--mirror http://cpan.cpantesters.org
- run: perl -V
- name: Run Tests - older than 5.14
if: success() && ( matrix.perl-version == 5.8 || matrix.perl-version == 5.10 || matrix.perl-version == 5.12 )
run: prove -lr t
- name: Run Tests - 5.14 and newer
if: success() && ( matrix.perl-version != 5.8 && matrix.perl-version != 5.10 && matrix.perl-version != 5.12 )
run: prove -lr t xt
env:
AUTHOR_TESTING: 1
test_windows:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["windows-latest"]
perl-version:
# https://github.com/shogo82148/actions-setup-perl/issues/223
#- "5.10"
#- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
# As of 2022-06-06 5.32 is the latest Strawberry Perl
# - "5.34"
# - "5.36"
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }}
needs: build
steps:
- uses: actions/checkout@v2
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
distribution: strawberry
- uses: actions/download-artifact@master
with:
name: build_dir
path: .
- name: install deps using cpanm
uses: perl-actions/install-with-cpanm@v1
with:
cpanfile: "cpanfile"
args: "--mirror https://cpan.metacpan.org --mirror http://cpan.cpantesters.org"
- run: perl -V
- run: prove -l t xt
env:
AUTHOR_TESTING: 1