-
Notifications
You must be signed in to change notification settings - Fork 0
130 lines (112 loc) · 2.95 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
---
name: build and test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
jobs:
build-job:
name: Build distribution
runs-on: ubuntu-20.04
container:
image: perldocker/perl-tester:5.38
steps:
- name: Checkout docker/package
uses: actions/checkout@v4
- name: Show perl version
run: perl -V
- name: Install dependencies
run: |
cpanm --notest Module::Build~0.4004
cpanm --notest Test::CheckManifest
perl Build.PL
perl Build installdeps
- name: Prepare build_dir
run: |
perl Build distdir
BUILD_DIR=$(perl -MModule::Build -e 'print Module::Build->resume->dist_dir')
mv -v $BUILD_DIR build_dir
- name: Run tests (sanity check)
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
EXTENDED_TESTING: 1
RELEASE_TESTING: 1
run: |
cd build_dir
perl Build.PL
perl Build test
- name: Upload artifact for next steps
uses: actions/upload-artifact@v4
with:
name: build_dir
path: build_dir
coverage-job:
needs: build-job
runs-on: ubuntu-20.04
container:
image: perldocker/perl-tester:5.38
steps:
- name: Checkout docker/package
uses: actions/checkout@v4 # codecov wants to be inside a Git repository
- name: Download artifact from build step
uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps && test-dist
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
test-job:
needs: build-job
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest ]
distribution: [ default ]
perl-version:
- "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"
- "latest"
runs-on: ${{ matrix.os }}
name: on ${{ matrix.os }} perl ${{ matrix.perl-version }}
steps:
- name: Set up perl
uses: shogo82148/[email protected]
with:
perl-version: ${{ matrix.perl-version }}
distribution: ${{ matrix.distribution }}
- name: Download artifact from build step
uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Show perl version
run: perl -V
- name: Install Dependencies
run: |
cpanm --notest Module::Build~0.4004
perl Build.PL
perl Build installdeps
- name: Run tests
run: prove -lr t -v
env:
AUTHOR_TESTING: 0
RELEASE_TESTING: 0