-
Notifications
You must be signed in to change notification settings - Fork 53
178 lines (176 loc) · 4.83 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
---
name: dzil build and test
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
workflow_dispatch:
jobs:
build-job:
name: Build distribution
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.36
steps:
- uses: actions/checkout@v4
- name: Run Tests
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
EXTENDED_TESTING: 1
RELEASE_TESTING: 1
run: upgrade-perl-helpers && auto-build-and-test-dist
- uses: actions/upload-artifact@v4
with:
name: build_dir
path: build_dir
coverage-job:
name: Coverage
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.36
steps:
- uses: actions/checkout@v4 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps --with-develop && test-dist
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
http-one-one-regression-job:
name: HTTP/1.1 Keepalive Regression Test - see GH \# 14
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.34
steps:
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Install deps including curl and test
run: >
cpan-install-dist-deps --with-develop
&& cpanm LWP::Protocol::Net::Curl
- name: test
run: test-dist
env:
PERL5OPT: -MLWP::Protocol::Net::Curl=http_version,2
test-linux:
name: "${{ matrix.perl-version }} on Linux"
needs: build-job
runs-on: ubuntu-latest
container:
image: "perldocker/perl-tester:${{ matrix.perl-version }}"
strategy:
matrix:
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"
- "5.38"
steps:
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpanm --notest Test::Deep@1.130
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps && test-dist
test-macos:
name: ${{ matrix.perl-version }} on macos-latest
needs: test-linux
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
perl-version:
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
- "5.38"
steps:
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::Deep@1.130
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v1.7
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-test"
- run: prove -lr t
test-windows:
name: ${{ matrix.perl-version }} on windows-latest
needs: test-linux
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
perl-version:
- "5.14"
- "5.16"
#- "5.18" https://github.com/libwww-perl/WWW-Mechanize/runs/822568352?check_suite_focus=true
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
steps:
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
distribution: strawberry # this option only used on Windows
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::Deep@1.130
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v1.7
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-test --with-develop"
- run: cpanm --test-only -v .