-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (96 loc) · 2.4 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
---
name: build and test
on:
# Automated:
push:
branches:
- "main"
- "test"
pull_request:
branches:
- "main"
# Manual:
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
test-job:
needs: build-job
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest ]
perl-version:
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
- "5.38"
- "5.40.0"
# - "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: default
- 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 --cpan_client 'cpan -T'
- name: Run tests
run: prove -lr t -v
env:
AUTHOR_TESTING: 0
RELEASE_TESTING: 0