diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 987620f..1b1e567 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,18 +30,12 @@ jobs: - "5.24" - "5.22" - "5.20" - - "5.18" - - "5.16" - - "5.14" - - "5.12" - - "5.10" - - "5.8" env: CIP_TAG: ${{ matrix.cip_tag }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Bootstrap CIP run: | @@ -54,7 +48,7 @@ jobs: cip cache-key - name: Cache CPAN modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cip key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml deleted file mode 100644 index d2b8134..0000000 --- a/.github/workflows/macos.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: macos - -on: - push: - branches: - - '*' - tags-ignore: - - '*' - pull_request: - -env: - PERL5LIB: /Users/runner/perl5/lib/perl5 - PERL_LOCAL_LIB_ROOT: /Users/runner/perl5 - PERL_MB_OPT: --install_base /Users/runner/perl5 - PERL_MM_OPT: INSTALL_BASE=/Users/runner/perl5 - -jobs: - perl: - - runs-on: macOS-latest - - strategy: - fail-fast: false - - steps: - - uses: actions/checkout@v2 - - - name: Set up Perl - run: | - brew install perl libffi libarchive - curl https://cpanmin.us | perl - App::cpanminus -n - echo "/Users/runner/perl5/bin" >> $GITHUB_PATH - - - name: perl -V - run: perl -V - - - name: Prepare for cache - run: | - perl -V > perlversion.txt - ls -l perlversion.txt - - - name: Cache CPAN modules - uses: actions/cache@v1 - with: - path: ~/perl5 - key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - restore-keys: | - ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - - - name: Install Static Dependencies - run: | - cpanm -n Dist::Zilla - dzil authordeps --missing | cpanm -n - dzil listdeps --missing | cpanm -n - - - name: Install Dynamic Dependencies - run: dzil run --no-build 'cpanm --installdeps .' - - - name: Run Tests - run: dzil test -v - - - name: CPAN log - if: ${{ failure() }} - run: | - cat ~/.cpanm/latest-build/build.log diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml deleted file mode 100644 index 913e2d0..0000000 --- a/.github/workflows/windows.yml +++ /dev/null @@ -1,70 +0,0 @@ -name: windows - -on: - push: - branches: - - '*' - tags-ignore: - - '*' - pull_request: - -env: - PERL5LIB: c:\cx\lib\perl5 - PERL_LOCAL_LIB_ROOT: c:/cx - PERL_MB_OPT: --install_base C:/cx - PERL_MM_OPT: INSTALL_BASE=C:/cx - -jobs: - perl: - - runs-on: windows-latest - - strategy: - fail-fast: false - - steps: - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - - uses: actions/checkout@v2 - - - name: Set up Perl - run: | - choco install strawberryperl - echo "C:\cx\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "C:\strawberry\c\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "C:\strawberry\perl\site\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "C:\strawberry\perl\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - - - name: Prepare for cache - run: | - perl -V > perlversion.txt - - - name: Cache CPAN modules - uses: actions/cache@v1 - env: - cache-name: cache-cpan-modules - with: - path: c:\cx - key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - restore-keys: | - ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - - - name: perl -V - run: perl -V - - - name: Install Static Dependencies - run: | - cpanm -n Dist::Zilla - dzil authordeps --missing | cpanm -n - dzil listdeps --missing | cpanm -n - - - name: Install Dynamic Dependencies - run: dzil run --no-build 'cpanm --installdeps .' - - - name: Run Tests - run: dzil test -v - - diff --git a/Changes b/Changes index 6fe9322..74bc863 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for {{$dist->name}} {{$NEXT}} + - Fixed incorrect capitalization in synopsis 0.05 2023-05-07 06:09:46 -0600 - Documentation improvements diff --git a/README.md b/README.md index a07bb3e..4dafae1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Log::Log4perl::Appender::TAP ![linux](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/linux/badge.svg) ![macos](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/macos/badge.svg) ![windows](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/windows/badge.svg) +# Log::Log4perl::Appender::TAP ![linux](https://github.com/uperl/Log-Log4perl-Appender-TAP/workflows/linux/badge.svg) Append to TAP output @@ -8,7 +8,7 @@ Append to TAP output use Test2::V0; use Log::Log4perl; -LOG::Log4perl::init(\< # COPYRIGHT AND LICENSE -This software is copyright (c) 2017-2024 by Graham Ollis. +This software is copyright (c) 2017-2025 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. diff --git a/dist.ini b/dist.ini index e32f6d5..a136d02 100644 --- a/dist.ini +++ b/dist.ini @@ -2,7 +2,7 @@ name = Log-Log4perl-Appender-TAP author = Graham Ollis license = Perl_5 copyright_holder = Graham Ollis -copyright_year = 2017-2024 +copyright_year = 2017-2025 version = 0.05 [@Author::Plicease] @@ -12,8 +12,6 @@ test2_v0 = 1 github_user = uperl workflow = linux -workflow = macos -workflow = windows [RemovePrereqs] remove = strict diff --git a/lib/Log/Log4perl/Appender/TAP.pm b/lib/Log/Log4perl/Appender/TAP.pm index b08b458..e2618d3 100644 --- a/lib/Log/Log4perl/Appender/TAP.pm +++ b/lib/Log/Log4perl/Appender/TAP.pm @@ -14,7 +14,7 @@ use parent qw( Log::Log4perl::Appender ); use Test2::V0; use Log::Log4perl; - LOG::Log4perl::init(\<