Skip to content

automatic migration: bump-2024 #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
21 changes: 11 additions & 10 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,27 @@ jobs:
fail-fast: false
matrix:
cip:
- tag: "static"
- tag: "5.37"
- tag: "5.41"

- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=warn
- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=default
- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=digest
- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=encrypt
- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=digest_or_encrypt
- tag: "5.36"
- tag: "5.40"
env: ALIEN_DOWNLOAD_RULE=digest_and_encrypt
- tag: "5.36"
- tag: "5.40"
env: ALIEN_INSTALL_NETWORK=0
- tag: "5.36"
- tag: "5.40"
env: ALIEN_INSTALL_NETWORK=1

- tag: "5.38"
- tag: "5.36"
- tag: "5.34"
- tag: "5.32"
- tag: "5.30"
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
*.swp
.DS_Store
*.bak
/.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 @@
# Alien::Base::ModuleBuild ![linux](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/linux/badge.svg) ![windows](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/windows/badge.svg) ![macos](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/macos/badge.svg)
# Alien::Base::ModuleBuild ![static](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/static/badge.svg) ![linux](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/linux/badge.svg) ![windows](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/windows/badge.svg) ![macos](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/macos/badge.svg)

A Module::Build subclass for building Alien:: modules and their libraries

Expand Down Expand Up @@ -370,7 +370,7 @@ Alberto Simões (ambs)

# COPYRIGHT AND LICENSE

This software is copyright (c) 2012-2022 by Joel A Berger.
This software is copyright (c) 2012-2024 by Joel A Berger.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
12 changes: 7 additions & 5 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ author = Graham Ollis <plicease@cpan.org>
author = Joel A Berger <joel.a.berger@gmail.com>
license = Perl_5
copyright_holder = Joel A Berger
copyright_year = 2012-2022
copyright_year = 2012-2024
version = 1.17

[@Author::Plicease]
:version = 2.69
:version = 2.79
release_tests = 1
github_user = PerlAlien
installer = ModuleBuild
Expand All @@ -18,9 +18,11 @@ diag = +LWP::UserAgent
diag = +Digest::SHA
diag = +Acme::Alien::DontPanic
diag = +Acme::Alien::DontPanic2
workflow = linux
workflow = windows
workflow = macos

workflow = static
workflow = linux
workflow = windows
workflow = macos

[Prereqs]
Module::Build = 0.4004
Expand Down
Loading