Skip to content

Commit

Permalink
Merge pull request #3 from timlegge/dist-zilla
Browse files Browse the repository at this point in the history
Move to Dist::Zilla and other changes
  • Loading branch information
timlegge committed Feb 21, 2022
2 parents 643c7b6 + b822ba5 commit 7775d7b
Show file tree
Hide file tree
Showing 32 changed files with 725 additions and 2,550 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/macos-10.15.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

name: macos-10.15

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
branches:
- '*'
jobs:
perl:
# REF: https://github.com/actions/virtual-environments
runs-on: macOS-10.15

strategy:
fail-fast: false

steps:
- uses: actions/checkout@v2
- name: uses install-with-cpanm
uses: perl-actions/install-with-cpanm@v1
with:
cpanfile: "cpanfile"
sudo: false
# REF: https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md (see link above, at the time of writing we get Perl 5.34.0 with macOS 10.15)
- name: perl -V
run: perl -V

- name: Run Tests
run: |
perl Makefile.PL
make
make test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: macos
name: macos-latest

on:
push:
Expand All @@ -19,18 +19,16 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Set up Perl
run: |
brew install perl
curl https://cpanmin.us | perl - App::cpanminus -n
echo "/Users/runner/perl5/bin" >> $GITHUB_PATH
- name: uses install-with-cpanm
uses: perl-actions/install-with-cpanm@v1
with:
cpanfile: "cpanfile"
sudo: false
- name: perl -V
run: perl -V

- name: Run Tests
run: |
curl -sL https://cpanmin.us/ | perl - -nq --with-develop --installdeps -v .
perl Makefile.PL
make
make test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ VerifyX509.o
VerifyX509.c
VerifyX509.bs
SIGNATURE
Crypt-OpenSSL-VerifyX509*
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Crypt-OpenSSL-VerifyX509

{{$NEXT}}

0.16 2021-06-03
- TBD Update version and changes
- 8ae1bcd Croak message text changed
Expand Down

0 comments on commit 7775d7b

Please sign in to comment.