Skip to content
Open
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
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
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ FFI-Platypus-Type-Enum-*
/.build/
*.swp


/FFI-Platypus-Type-Enum-*
/.build
*.old
*.orig
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pls.perlcritic.perlcriticrc": "perlcriticrc",
"pls.inc": [
"$ROOT_PATH/lib"
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FFI::Platypus::Type::Enum ![linux](https://github.com/PerlFFI/FFI-Platypus-Type-Enum/workflows/linux/badge.svg)
# FFI::Platypus::Type::Enum ![static](https://github.com/PerlFFI/FFI-Platypus-Type-Enum/workflows/static/badge.svg) ![linux](https://github.com/PerlFFI/FFI-Platypus-Type-Enum/workflows/linux/badge.svg)

Custom platypus type for dealing with C enumerated types

Expand Down Expand Up @@ -287,7 +287,7 @@ José Joaquín Atria (JJATRIA)

# COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by Graham Ollis.
This software is copyright (c) 2020-2024 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.
8 changes: 5 additions & 3 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ name = FFI-Platypus-Type-Enum
author = Graham Ollis <[email protected]>
license = Perl_5
copyright_holder = Graham Ollis
copyright_year = 2020-2022
copyright_year = 2020-2024
version = 0.06

[@Author::Plicease]
:version = 2.69
:version = 2.79
release_tests = 1
installer = Author::Plicease::MakeMaker
github_user = PerlFFI
test2_v0 = 1
workflow = linux

workflow = static
workflow = linux

[Author::Plicease::Core]

Expand Down
Loading