Skip to content

Commit d257369

Browse files
authored
Merge pull request #46 from Perl/add-devel
2 parents b9c0972 + 6ec4d2c commit d257369

File tree

3 files changed

+27
-15
lines changed

3 files changed

+27
-15
lines changed

.github/workflows/publish-to-docker.yml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
perl-version:
37+
- "devel"
3738
- "5.36"
3839
- "5.34"
3940
- "5.32"

.github/workflows/test-cpanfile.yml

+16-15
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,27 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
perl-version:
18-
- '5.8'
19-
- '5.10'
20-
- '5.12'
21-
- '5.14'
22-
- '5.16'
23-
- '5.18'
24-
- '5.20'
25-
- '5.22'
26-
- '5.24'
27-
- '5.26'
28-
- '5.28'
29-
- '5.30'
30-
- '5.32'
31-
- '5.34'
18+
- 'devel'
3219
- '5.36'
20+
- '5.34'
21+
- '5.32'
22+
- '5.30'
23+
- '5.28'
24+
- '5.26'
25+
- '5.24'
26+
- '5.22'
27+
- '5.20'
28+
- '5.18'
29+
- '5.16'
30+
- '5.14'
31+
- '5.12'
32+
- '5.10'
33+
- '5.8'
3334
name: Perl ${{ matrix.perl-version }}
3435
steps:
3536
- uses: actions/checkout@v3
3637
- name: Install deps using cpm
37-
uses: perl-actions/install-with-cpm@v1
38+
uses: perl-actions/install-with-cpm@stable
3839
with:
3940
cpanfile: 'cpanfile'
4041
sudo: false

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ The images can be found at [https://hub.docker.com/repository/docker/perldocker/
7979
The following tags are available from the repository `perldocker/perl-tester`
8080

8181
```
82+
devel
8283
5.36
8384
5.34
8485
5.32
@@ -96,6 +97,15 @@ The following tags are available from the repository `perldocker/perl-tester`
9697
5.8
9798
```
9899

100+
## devel build
101+
102+
Note that the `devel` build was added to test on the current Perl development version. (example: `5.37.8`, )
103+
This is tracking the last Perl `devel` version released.
104+
105+
## OS flavor
106+
107+
At this time all the images built are based on `buster` distro.
108+
99109
# Continuous Integrations
100110

101111
## Using the images with GitHub Workflow

0 commit comments

Comments
 (0)