Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 0 additions & 89 deletions .github/workflows/cygwin.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
fail-fast: false
matrix:
cip_tag:
- static
- "5.37"
- "5.41"
- "5.40"
- "5.38"
- "5.36"
- "5.34"
- "5.32"
Expand Down
83 changes: 0 additions & 83 deletions .github/workflows/msys2-mingw.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: static

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
perl:

runs-on: ubuntu-latest

env:
CIP_TAG: static

steps:
- uses: actions/checkout@v2

- name: Bootstrap CIP
run: |
curl -L https://raw.githubusercontent.com/uperl/cip/main/bin/github-bootstrap | bash

- name: Build + Test
run: |
cip script
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- Supress warning in Makefile.PL about calling getppid in void context (gh#12, gh#13)

0.09 2018-12-06 21:07:21 -0500
- Detect PowerShell on Unix (pwsh)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Shell::Guess ![linux](https://github.com/uperl/Shell-Guess/workflows/linux/badge.svg) ![windows](https://github.com/uperl/Shell-Guess/workflows/windows/badge.svg) ![macos](https://github.com/uperl/Shell-Guess/workflows/macos/badge.svg) ![cygwin](https://github.com/uperl/Shell-Guess/workflows/cygwin/badge.svg) ![msys2-mingw](https://github.com/uperl/Shell-Guess/workflows/msys2-mingw/badge.svg)
# Shell::Guess ![static](https://github.com/uperl/Shell-Guess/workflows/static/badge.svg) ![linux](https://github.com/uperl/Shell-Guess/workflows/linux/badge.svg) ![windows](https://github.com/uperl/Shell-Guess/workflows/windows/badge.svg) ![macos](https://github.com/uperl/Shell-Guess/workflows/macos/badge.svg)

Make an educated guess about the shell in use

Expand Down Expand Up @@ -511,7 +511,7 @@ Julien Fiegehenn (SIMBABQUE)

# COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Graham Ollis.
This software is copyright (c) 2012-2023 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.
7 changes: 3 additions & 4 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = Shell-Guess
author = Graham Ollis <plicease@cpan.org>
license = Perl_5
copyright_holder = Graham Ollis
copyright_year = 2012-2022
copyright_year = 2012-2023

version = 0.09

Expand All @@ -14,11 +14,10 @@ diag = +Win32::Getppid
diag = +Win32::Process::List
github_user = uperl

workflow = static
workflow = linux
workflow = windows
workflow = macos
workflow = cygwin
workflow = msys2-mingw

[RemovePrereqs]

Expand Down Expand Up @@ -47,7 +46,7 @@ contributor = Julien Fiegehenn (SIMBABQUE)
[Meta::Dynamic::Config]

[DynamicPrereqs / DynamicPrereqsUnixWithoutProc]
-condition = ($^O ne 'dos' && $^O ne 'VMS' && $^O ne 'MSWin32' && eval { getppid; 1 }) && ! do { require File::Spec; -e File::Spec->catfile('', 'proc', getppid, 'cmdline') }
-condition = ($^O ne 'dos' && $^O ne 'VMS' && $^O ne 'MSWin32' && eval { my $ppid = getppid; 1 }) && ! do { require File::Spec; -e File::Spec->catfile('', 'proc', getppid, 'cmdline') }
-body = requires('Unix::Process');

[DynamicPrereqs / DynamicPrereqsWinblows]
Expand Down
Loading