Commit e26bfd1
Fix GH#96: remove undeclared Try::Tiny dep, add non-blocking blead CI (#98)
* Remove undeclared Try::Tiny dependency from t/diag.t
t/diag.t used Try::Tiny but it was never declared as a test
prerequisite. On a freshly built perl that does not already have
Try::Tiny installed (e.g. blead 5.45.1, as reported via IRC by @Tux),
the toolchain does not pull it in, so t/diag.t dies at compile time
("Can't locate Try/Tiny.pm") and `make test` fails -- making the
distribution appear not to install (GH#96).
The two try{} blocks only swallowed exceptions around diagnostic
Net::SSLeay version calls, so a plain eval { ...; 1 } or diag(...) is
equivalent. This drops the dependency entirely instead of adding it to
the prereqs, which keeps the test suite installable on minimal perls.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* CI: test on Perl blead (devel), non-blocking
Add a container-based job using perldocker/perl-tester:devel (which
tracks the latest Perl development release) so we get an early signal
when the dist breaks on the upcoming Perl -- exactly the class of
problem behind GH#96, which the stable CI matrix (topping out at 5.42)
never exercised.
The job deliberately has no continue-on-error: a failure shows up as a
red X so it is visible. Keep it OUT of the required status checks in
branch protection so blead breakage never blocks a merge -- we want the
signal, not a gate.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>1 parent 83516ee commit e26bfd1
2 files changed
Lines changed: 23 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
51 | 68 | | |
52 | 69 | | |
53 | 70 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
| |||
28 | 27 | | |
29 | 28 | | |
30 | 29 | | |
31 | | - | |
| 30 | + | |
32 | 31 | | |
33 | 32 | | |
34 | 33 | | |
35 | 34 | | |
36 | | - | |
37 | | - | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
| 42 | + | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| |||
0 commit comments